From 7f983992bdbfe5ed3aa7c2a9fbe98660bda02e06 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 7 Apr 2020 19:50:06 -0500 Subject: [PATCH] feat(dict): varcon dict --- Cargo.lock | 93 +- Cargo.toml | 1 + azure-pipelines.yml | 3 + crates/typos-dict/codegen/src/main.rs | 2 +- crates/varcon-parser/Cargo.toml | 17 + crates/varcon-parser/src/lib.rs | 107 + crates/varcon-parser/src/parser.rs | 568 + crates/varcon/Cargo.toml | 23 + crates/varcon/assets/.gitattributes | 1 + crates/varcon/assets/README | 481 + crates/varcon/assets/varcon.txt | 32432 ++ crates/varcon/codegen/Cargo.toml | 20 + crates/varcon/codegen/src/main.rs | 99 + crates/varcon/src/codegen.rs | 450944 +++++++++++++++++++++++ crates/varcon/src/lib.rs | 75 + 15 files changed, 484863 insertions(+), 3 deletions(-) create mode 100644 crates/varcon-parser/Cargo.toml create mode 100644 crates/varcon-parser/src/lib.rs create mode 100644 crates/varcon-parser/src/parser.rs create mode 100644 crates/varcon/Cargo.toml create mode 100644 crates/varcon/assets/.gitattributes create mode 100644 crates/varcon/assets/README create mode 100644 crates/varcon/assets/varcon.txt create mode 100644 crates/varcon/codegen/Cargo.toml create mode 100644 crates/varcon/codegen/src/main.rs create mode 100644 crates/varcon/src/codegen.rs create mode 100644 crates/varcon/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index 2a2eade..8b0b2c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -24,6 +24,15 @@ version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9a60d744a80c30fcb657dfe2c1b22bcb3e814c1a1e3674f32bf5820b570fbff" +[[package]] +name = "arrayvec" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" +dependencies = [ + "nodrop", +] + [[package]] name = "assert_fs" version = "1.0.0" @@ -81,9 +90,9 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" [[package]] name = "cfg-if" -version = "0.1.10" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +checksum = "b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33" [[package]] name = "clap" @@ -276,6 +285,26 @@ version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" +[[package]] +name = "enumflags2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0" +dependencies = [ + "enumflags2_derive", +] + +[[package]] +name = "enumflags2_derive" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce" +dependencies = [ + "proc-macro2 1.0.12", + "quote 1.0.4", + "syn 1.0.19", +] + [[package]] name = "env_logger" version = "0.7.1" @@ -411,6 +440,20 @@ version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +[[package]] +name = "lexical-core" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f86d66d380c9c5a685aaac7a11818bdfa1f733198dfd9ec09c70b762cd12ad6f" +dependencies = [ + "arrayvec", + "bitflags", + "cfg-if", + "rustc_version", + "ryu", + "static_assertions", +] + [[package]] name = "libc" version = "0.2.69" @@ -460,6 +503,23 @@ dependencies = [ "unicase", ] +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "nom" +version = "5.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b471253da97532da4b61552249c521e01e736071f71c1a4f7ebbfbf0a06aad6" +dependencies = [ + "lexical-core", + "memchr", + "version_check", +] + [[package]] name = "normalize-line-endings" version = "0.3.0" @@ -786,6 +846,12 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa8f3741c7372e75519bd9346068370c9cdaabcc1f9599cbcf2a2719352286b7" +[[package]] +name = "static_assertions" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f3eb36b47e512f8f1c9e3d10c2c1965bc992bd9cdb024fa581e2194501c83d3" + [[package]] name = "strsim" version = "0.8.0" @@ -1025,6 +1091,29 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" +[[package]] +name = "varcon-codegen" +version = "1.0.2" +dependencies = [ + "codegenrs", + "structopt", + "varcon-parser", +] + +[[package]] +name = "varcon-dict" +version = "0.2.1" +dependencies = [ + "enumflags2", +] + +[[package]] +name = "varcon-parser" +version = "1.0.0" +dependencies = [ + "nom", +] + [[package]] name = "vec_map" version = "0.8.2" diff --git a/Cargo.toml b/Cargo.toml index 3200481..e32fbc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ members = [ "crates/codespell-dict", "crates/codespell-dict/codegen", "crates/misspell-dict", "crates/misspell-dict/codegen", "crates/wikipedia-dict", "crates/wikipedia-dict/codegen", + "crates/varcon", "crates/varcon/codegen", "crates/varcon-parser", ] [package] diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2db5146..1a61cc4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,6 +39,9 @@ stages: - script: | cargo run --package wikipedia-codegen -- --output crates/wikipedia-dict/src/dict_codegen.rs --check displayName: Verify wikipedia-dict + - script: | + cargo run --package varcon-codegen -- --output crates/varcon/src/codegen.rs --check + displayName: Verify varcon-dict - stage: committed displayName: Lint History dependsOn: [] diff --git a/crates/typos-dict/codegen/src/main.rs b/crates/typos-dict/codegen/src/main.rs index b0507dd..6db0b4c 100644 --- a/crates/typos-dict/codegen/src/main.rs +++ b/crates/typos-dict/codegen/src/main.rs @@ -1,6 +1,6 @@ use structopt::StructOpt; -pub const DICT: &[u8] = include_bytes!("../../assets/words.csv"); +const DICT: &[u8] = include_bytes!("../../assets/words.csv"); fn generate(file: &mut W) { writeln!( diff --git a/crates/varcon-parser/Cargo.toml b/crates/varcon-parser/Cargo.toml new file mode 100644 index 0000000..64d784d --- /dev/null +++ b/crates/varcon-parser/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "varcon-parser" +version = "1.0.0" +authors = ["Ed Page "] +description = "Parse varcon.txt file" +repository = "https://github.com/crate-ci/typos" +readme = "../../../README.md" +categories = ["text-processing"] +license = "MIT" +edition = "2018" + +[badges] +azure-devops = { project = "crate-ci", pipeline = "typos" } +codecov = { repository = "crate-ci/typos" } + +[dependencies] +nom = "5.1.1" diff --git a/crates/varcon-parser/src/lib.rs b/crates/varcon-parser/src/lib.rs new file mode 100644 index 0000000..eedf136 --- /dev/null +++ b/crates/varcon-parser/src/lib.rs @@ -0,0 +1,107 @@ +mod parser; + +pub use parser::ClusterIter; + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Cluster { + pub header: Option, + pub entries: Vec, + pub notes: Vec, +} + +impl Cluster { + pub fn infer(&mut self) { + for entry in self.entries.iter_mut() { + entry.infer(); + } + } +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Entry { + pub variants: Vec, + pub pos: Option, + pub archaic: bool, + pub note: bool, + pub description: Option, + pub comment: Option, +} + +impl Entry { + pub fn infer(&mut self) { + imply( + &mut self.variants, + Category::BritishIse, + Category::BritishIze, + ); + imply(&mut self.variants, Category::BritishIze, Category::Canadian); + imply( + &mut self.variants, + Category::BritishIse, + Category::Australian, + ); + } +} + +fn imply(variants: &mut Vec, required: Category, missing: Category) { + let missing_exists = variants + .iter() + .any(|v| v.types.iter().any(|t| t.category == missing)); + if missing_exists { + return; + } + + for variant in variants.iter_mut() { + let types: Vec<_> = variant + .types + .iter() + .filter(|t| t.category == required) + .cloned() + .map(|mut t| { + t.category = missing; + t + }) + .collect(); + variant.types.extend(types); + } +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Variant { + pub types: Vec, + pub word: String, +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Type { + pub category: Category, + pub tag: Option, + pub num: Option, +} + +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] +pub enum Category { + American, + BritishIse, + BritishIze, + Canadian, + Australian, + Other, +} + +#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +pub enum Tag { + Eq, + Variant, + Seldom, + Possible, + Improper, +} + +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] +pub enum Pos { + Noun, + Verb, + Adjective, + Adverb, +} diff --git a/crates/varcon-parser/src/parser.rs b/crates/varcon-parser/src/parser.rs new file mode 100644 index 0000000..14a9fad --- /dev/null +++ b/crates/varcon-parser/src/parser.rs @@ -0,0 +1,568 @@ +use nom::IResult; +use nom::InputTakeAtPosition; + +use crate::*; + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct ClusterIter<'i> { + input: &'i str, +} + +impl<'i> ClusterIter<'i> { + pub fn new(input: &'i str) -> Self { + Self { input } + } +} + +impl<'i> Iterator for ClusterIter<'i> { + type Item = Cluster; + + fn next(&mut self) -> Option { + let i = self.input.trim_start(); + let (i, c) = Cluster::parse(i).ok()?; + self.input = i; + Some(c) + } +} + +#[cfg(test)] +mod test_cluster_iter { + use super::*; + + #[test] + fn test_single() { + let iter = ClusterIter::new( + "# acknowledgment (level 35) +A Cv: acknowledgment / Av B C: acknowledgement +A Cv: acknowledgments / Av B C: acknowledgements +A Cv: acknowledgment's / Av B C: acknowledgement's + +", + ); + let all: Vec<_> = iter.collect(); + assert_eq!(all.len(), 1); + } + + #[test] + fn test_multiple() { + let iter = ClusterIter::new( + "# acknowledgment (level 35) +A Cv: acknowledgment / Av B C: acknowledgement +A Cv: acknowledgments / Av B C: acknowledgements +A Cv: acknowledgment's / Av B C: acknowledgement's + +# acknowledgment (level 35) +A Cv: acknowledgment / Av B C: acknowledgement +A Cv: acknowledgments / Av B C: acknowledgements +A Cv: acknowledgment's / Av B C: acknowledgement's + +", + ); + let all: Vec<_> = iter.collect(); + assert_eq!(all.len(), 2); + } +} + +impl Cluster { + pub fn parse(input: &str) -> IResult<&str, Self> { + let header = nom::sequence::tuple(( + nom::bytes::streaming::tag("#"), + nom::character::streaming::space0, + nom::character::streaming::not_line_ending, + nom::character::streaming::line_ending, + )); + let note = nom::sequence::preceded( + nom::sequence::pair( + nom::bytes::streaming::tag("##"), + nom::character::streaming::space0, + ), + nom::sequence::terminated( + nom::character::streaming::not_line_ending, + nom::character::streaming::line_ending, + ), + ); + let cluster = nom::sequence::tuple(( + nom::combinator::opt(header), + nom::multi::many1(nom::sequence::terminated( + Entry::parse, + nom::character::streaming::line_ending, + )), + nom::multi::many0(note), + )); + let (input, (header, entries, notes)) = (cluster)(input)?; + + let header = header.map(|s| s.2.to_owned()); + let notes = notes.into_iter().map(|s| s.to_owned()).collect(); + let c = Self { + header, + entries, + notes, + }; + Ok((input, c)) + } +} + +#[cfg(test)] +mod test_cluster { + use super::*; + + #[test] + fn test_basic() { + let (input, actual) = Cluster::parse( + "# acknowledgment (level 35) +A Cv: acknowledgment / Av B C: acknowledgement +A Cv: acknowledgments / Av B C: acknowledgements +A Cv: acknowledgment's / Av B C: acknowledgement's + +", + ) + .unwrap(); + assert_eq!(input, "\n"); + assert_eq!( + actual.header, + Some("acknowledgment (level 35)".to_owned()) + ); + assert_eq!(actual.entries.len(), 3); + assert_eq!(actual.notes.len(), 0); + } + + #[test] + fn test_notes() { + let (input, actual) = Cluster::parse( + "# coloration (level 50) +A B C: coloration / B. Cv: colouration +A B C: colorations / B. Cv: colourations +A B C: coloration's / B. Cv: colouration's +## OED has coloration as the preferred spelling and discolouration as a +## variant for British Engl or some reason + +", + ) + .unwrap(); + assert_eq!(input, "\n"); + assert_eq!( + actual.header, + Some("coloration (level 50)".to_owned()) + ); + assert_eq!(actual.entries.len(), 3); + assert_eq!(actual.notes.len(), 2); + } +} + +impl Entry { + pub fn parse(input: &str) -> IResult<&str, Self> { + let var_sep = nom::sequence::tuple(( + nom::character::streaming::space0, + nom::bytes::streaming::tag("/"), + nom::character::streaming::space0, + )); + let (input, variants) = + nom::multi::separated_nonempty_list(var_sep, Variant::parse)(input)?; + + let desc_sep = nom::sequence::tuple(( + nom::character::streaming::space0, + nom::bytes::streaming::tag("|"), + )); + let (input, description) = + nom::combinator::opt(nom::sequence::tuple((desc_sep, Self::parse_description)))(input)?; + + let comment_sep = nom::sequence::tuple(( + nom::character::streaming::space0, + nom::bytes::streaming::tag("#"), + )); + let (input, comment) = nom::combinator::opt(nom::sequence::tuple(( + comment_sep, + nom::character::streaming::space1, + nom::character::streaming::not_line_ending, + )))(input)?; + + let mut e = match description { + Some((_, description)) => description, + None => Self { + variants: Vec::new(), + pos: None, + archaic: false, + note: false, + description: None, + comment: None, + }, + }; + e.variants = variants; + e.comment = comment.map(|c| c.2.to_owned()); + Ok((input, e)) + } + + fn parse_description(input: &str) -> IResult<&str, Self> { + let (input, (pos, archaic, note, description)) = nom::sequence::tuple(( + nom::combinator::opt(nom::sequence::tuple(( + nom::character::streaming::space1, + Pos::parse, + ))), + nom::combinator::opt(nom::sequence::tuple(( + nom::character::streaming::space1, + nom::bytes::streaming::tag("(-)"), + ))), + nom::combinator::opt(nom::sequence::tuple(( + nom::character::streaming::space1, + nom::bytes::streaming::tag("--"), + ))), + nom::combinator::opt(nom::sequence::tuple(( + nom::character::streaming::space1, + nom::bytes::streaming::take_till(|c| c == '\n' || c == '\r' || c == '#'), + ))), + ))(input)?; + + let variants = Vec::new(); + let pos = pos.map(|(_, p)| p); + let archaic = archaic.is_some(); + let note = note.is_some(); + let description = description.map(|(_, d)| d.to_owned()); + let e = Self { + variants, + pos, + archaic, + note, + description, + comment: None, + }; + Ok((input, e)) + } +} + +#[cfg(test)] +mod test_entry { + use super::*; + + #[test] + fn test_variant_only() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = + Entry::parse("A Cv: acknowledgment's / Av B C: acknowledgement's\n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 2); + assert_eq!(actual.pos, None); + assert_eq!(actual.archaic, false); + assert_eq!(actual.note, false); + assert_eq!(actual.description, None); + } + + #[test] + fn test_description() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Entry::parse("A C: prize / B: prise | otherwise\n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 2); + assert_eq!(actual.pos, None); + assert_eq!(actual.archaic, false); + assert_eq!(actual.note, false); + assert_eq!(actual.description, Some("otherwise".to_owned())); + } + + #[test] + fn test_pos() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Entry::parse("A B C: practice / AV Cv: practise | \n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 2); + assert_eq!(actual.pos, Some(Pos::Noun)); + assert_eq!(actual.archaic, false); + assert_eq!(actual.note, false); + assert_eq!(actual.description, None); + } + + #[test] + fn test_archaic() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Entry::parse("A: bark / Av B: barque | (-) ship\n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 2); + assert_eq!(actual.pos, None); + assert_eq!(actual.archaic, true); + assert_eq!(actual.note, false); + assert_eq!(actual.description, Some("ship".to_owned())); + } + + #[test] + fn test_note() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Entry::parse("_: cabbies | -- plural\n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 1); + assert_eq!(actual.pos, None); + assert_eq!(actual.archaic, false); + assert_eq!(actual.note, true); + assert_eq!(actual.description, Some("plural".to_owned())); + } + + #[test] + fn test_trailing_comment() { + let (input, actual) = Entry::parse( + "A B: accursed / AV B-: accurst # ODE: archaic, M-W: 'or' but can find little evidence of use\n", + ) + .unwrap(); + assert_eq!(input, "\n"); + assert_eq!(actual.variants.len(), 2); + assert_eq!(actual.pos, None); + assert_eq!(actual.archaic, false); + assert_eq!(actual.note, false); + assert_eq!(actual.description, None); + assert_eq!( + actual.comment, + Some("ODE: archaic, M-W: 'or' but can find little evidence of use".to_owned()) + ); + } +} + +impl Variant { + pub fn parse(input: &str) -> IResult<&str, Self> { + let types = + nom::multi::separated_nonempty_list(nom::character::streaming::space1, Type::parse); + let sep = nom::sequence::tuple(( + nom::bytes::streaming::tag(":"), + nom::character::streaming::space0, + )); + let (input, (types, word)) = nom::sequence::separated_pair(types, sep, word)(input)?; + let v = Self { types, word }; + Ok((input, v)) + } +} + +fn word(input: &str) -> IResult<&str, String> { + input + .split_at_position1( + |item| item.is_ascii_whitespace(), + nom::error::ErrorKind::Alpha, + ) + .map(|(i, s)| (i, s.to_owned().replace('_', " "))) +} + +#[cfg(test)] +mod test_variant { + use super::*; + + #[test] + fn test_valid() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Variant::parse("A Cv: acknowledgment ").unwrap(); + assert_eq!(input, " "); + assert_eq!( + actual.types, + vec![ + Type { + category: Category::American, + tag: None, + num: None, + }, + Type { + category: Category::Canadian, + tag: Some(Tag::Variant), + num: None, + } + ] + ); + assert_eq!(actual.word, "acknowledgment"); + } + + #[test] + fn test_extra() { + let (input, actual) = + Variant::parse("A Cv: acknowledgment's / Av B C: acknowledgement's").unwrap(); + assert_eq!(input, " / Av B C: acknowledgement's"); + assert_eq!( + actual.types, + vec![ + Type { + category: Category::American, + tag: None, + num: None, + }, + Type { + category: Category::Canadian, + tag: Some(Tag::Variant), + num: None, + } + ] + ); + assert_eq!(actual.word, "acknowledgment's"); + } + + #[test] + fn test_underscore() { + let (input, actual) = Variant::parse("_: air_gun\n").unwrap(); + assert_eq!(input, "\n"); + assert_eq!( + actual.types, + vec![Type { + category: Category::Other, + tag: None, + num: None, + },] + ); + assert_eq!(actual.word, "air gun"); + } +} + +impl Type { + pub fn parse(input: &str) -> IResult<&str, Type> { + let (input, category) = Category::parse(input)?; + let (input, tag) = nom::combinator::opt(Tag::parse)(input)?; + let (input, num) = nom::combinator::opt(nom::character::streaming::digit1)(input)?; + let num = num.map(|s| s.parse().expect("parser ensured its a number")); + let t = Type { category, tag, num }; + Ok((input, t)) + } +} + +#[cfg(test)] +mod test_type { + use super::*; + + #[test] + fn test_valid() { + // Having nothing after `A` causes an incomplete parse. Shouldn't be a problem for my use + // cases. + let (input, actual) = Type::parse("A ").unwrap(); + assert_eq!(input, " "); + assert_eq!(actual.category, Category::American); + assert_eq!(actual.tag, None); + assert_eq!(actual.num, None); + + let (input, actual) = Type::parse("Bv ").unwrap(); + assert_eq!(input, " "); + assert_eq!(actual.category, Category::BritishIse); + assert_eq!(actual.tag, Some(Tag::Variant)); + assert_eq!(actual.num, None); + } + + #[test] + fn test_extra() { + let (input, actual) = Type::parse("Z foobar").unwrap(); + assert_eq!(input, " foobar"); + assert_eq!(actual.category, Category::BritishIze); + assert_eq!(actual.tag, None); + assert_eq!(actual.num, None); + + let (input, actual) = Type::parse("C- foobar").unwrap(); + assert_eq!(input, " foobar"); + assert_eq!(actual.category, Category::Canadian); + assert_eq!(actual.tag, Some(Tag::Possible)); + assert_eq!(actual.num, None); + } + + #[test] + fn test_num() { + let (input, actual) = Type::parse("Av1 ").unwrap(); + assert_eq!(input, " "); + assert_eq!(actual.category, Category::American); + assert_eq!(actual.tag, Some(Tag::Variant)); + assert_eq!(actual.num, Some(1)); + } +} + +impl Category { + pub fn parse(input: &str) -> IResult<&str, Category> { + let symbols = nom::character::streaming::one_of("ABZCD_"); + nom::combinator::map(symbols, |c| match c { + 'A' => Category::American, + 'B' => Category::BritishIse, + 'Z' => Category::BritishIze, + 'C' => Category::Canadian, + 'D' => Category::Australian, + '_' => Category::Other, + _ => unreachable!("parser won't select this option"), + })(input) + } +} + +#[cfg(test)] +mod test_category { + use super::*; + + #[test] + fn test_valid() { + let (input, actual) = Category::parse("A").unwrap(); + assert_eq!(input, ""); + assert_eq!(actual, Category::American); + } + + #[test] + fn test_extra() { + let (input, actual) = Category::parse("_ foobar").unwrap(); + assert_eq!(input, " foobar"); + assert_eq!(actual, Category::Other); + } +} + +impl Tag { + pub fn parse(input: &str) -> IResult<&str, Tag> { + let symbols = nom::character::streaming::one_of(".vV-x"); + nom::combinator::map(symbols, |c| match c { + '.' => Tag::Eq, + 'v' => Tag::Variant, + 'V' => Tag::Seldom, + '-' => Tag::Possible, + 'x' => Tag::Improper, + _ => unreachable!("parser won't select this option"), + })(input) + } +} + +#[cfg(test)] +mod test_tag { + use super::*; + + #[test] + fn test_valid() { + let (input, actual) = Tag::parse(".").unwrap(); + assert_eq!(input, ""); + assert_eq!(actual, Tag::Eq); + } + + #[test] + fn test_extra() { + let (input, actual) = Tag::parse("x foobar").unwrap(); + assert_eq!(input, " foobar"); + assert_eq!(actual, Tag::Improper); + } +} + +impl Pos { + pub fn parse(input: &str) -> IResult<&str, Pos> { + use nom::bytes::streaming::tag; + let noun = tag(""); + let verb = tag(""); + let adjective = tag(""); + let adverb = tag(""); + nom::alt!(input, + noun => {|_| Pos::Noun } | + verb => {|_| Pos::Verb } | + adjective => {|_| Pos::Adjective } | + adverb => {|_| Pos::Adverb } + ) + } +} + +#[cfg(test)] +mod test_pos { + use super::*; + + #[test] + fn test_valid() { + let (input, actual) = Pos::parse("").unwrap(); + assert_eq!(input, ""); + assert_eq!(actual, Pos::Noun); + } + + #[test] + fn test_extra() { + let (input, actual) = Pos::parse(" foobar").unwrap(); + assert_eq!(input, " foobar"); + assert_eq!(actual, Pos::Adjective); + } +} diff --git a/crates/varcon/Cargo.toml b/crates/varcon/Cargo.toml new file mode 100644 index 0000000..0c5c3c2 --- /dev/null +++ b/crates/varcon/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "varcon-dict" +version = "0.2.1" +authors = ["Ed Page "] +description = "Source Code Spelling Correction" +repository = "https://github.com/crate-ci/typos" +readme = "../../README.md" +categories = ["development-tools", "text-processing"] +keywords = ["development", "spelling"] +license = "MIT" +edition = "2018" + +[badges] +azure-devops = { project = "crate-ci", pipeline = "typos" } +codecov = { repository = "crate-ci/typos" } + +[features] +default = ["all"] +all = ["flags"] +flags = ["enumflags2"] + +[dependencies] +enumflags2 = { version = "0.6", optional = true } diff --git a/crates/varcon/assets/.gitattributes b/crates/varcon/assets/.gitattributes new file mode 100644 index 0000000..36eaad9 --- /dev/null +++ b/crates/varcon/assets/.gitattributes @@ -0,0 +1 @@ +* linguist-vendored diff --git a/crates/varcon/assets/README b/crates/varcon/assets/README new file mode 100644 index 0000000..a72b515 --- /dev/null +++ b/crates/varcon/assets/README @@ -0,0 +1,481 @@ +Variant Conversion Info (VarCon) + +Version 2019.10.06 + +Copyright 2000-2016 by Kevin Atkinson (kevina@gnu.org) and Benjamin +Titze (btitze@protonmail.ch). + +This package contains information to convert between American, +British, Canadian, and Australian spellings and vocabulary as well as +other variant information. + +The latest version can be found at http://wordlist.aspell.net/. + +The main data file is varcon.txt. It contains information on the +preferred American, British, and Canadian spelling of a word as well +as other variant information. + +Each line contains a mapping between the various spellings of a word. +Words are tagged to indicate where the spelling is used, and each +word/tag pair is separated with a " / ". For example in the line: + A Cv: acknowledgment / Av B C: acknowledgement +"acknowledgment" and "acknowledgement" are two spellings of the same +word and "A", "Cv", "B", etc are the tags. Tags are separated by +spaces and the group of tags is separated from the word with a ": ". +Here, "acknowledgment" is the preferred American spelling (as +indicated by the "A") of the word, and "acknowledgement" is the +preferred Canadian and British spelling ("B" and "C"). However the +American spelling is sometimes used in Canada (as indicated by "Cv", +where the lowercase "v" indicated a variant form) and the British +spelling is sometimes used in America (as indicated the "Av"). + +More generally each tag consists of a spelling category (for example +"A") followed possible by a variant indicator. The spelling +categories are as follows: + A: American + B: British "ise" spelling + Z: British "ize" spelling or OED preferred Spelling + C: Canadian + D: Australian + _: Other (Variant info based on American dictionaries, never used + with any of the above). +and the variants tags are as follows: + .: equal + v: variant + V: seldom used variant + -: possible variant, should generally not used + x: improper variant (should not use) + +The "." or equal variant tags are reserved for special cases when +there is little agreement between dictionaries or when I think the +dictionary is wrong. The "v" indicator is used for most words marked +as variants in the dictionary. However, some variants will be demoted +to a "V". For example, if the variant is marked as "also" by +Merriam-Webster, or also if only some dictionaries acknowledge the +existence the variant. "-" is used when the variant is generally not +listed is the dictionary but I could find some evidence of its use, or +when it is marked as an archaic spelling for the word. The "x" +is used when the spelling is almost generally considered a +misspelling, and is only included for completeness. + +For Australian English "v" was used for variants that are widely used, +but not preferred, and "V" for all "-or" (vs. "-our") variants and +variants considered "chiefly US". + +If there are no tags with the 'Z' spelling category on the line then +'B' implies 'Z'. Similarly if there are no 'C' tags then 'Z' implies +'C'. If there are no 'D' tags then 'B' implies 'D'. + +For ease of reading and maintaining the data file, each line is +grouped in a cluster of closely related words. Each cluster is +uniquely identified by a headword, which is generally the American +spelling of word on the first line of the cluster. Each cluster is +started with a '#' and is followed by the headword with some +additional information after it. For example the cluster for +acknowledgment is: + # acknowledgment (level 35) + A Cv: acknowledgment / Av B C: acknowledgement + A Cv: acknowledgments / Av B C: acknowledgements + A Cv: acknowledgment's / Av B C: acknowledgement's +The "" tag will be explained latter, and "(level 35)" +indicate what level in SCOWL (see http://wordlist.sourceforge.net) +the headword is found in. The levels generally mean the following: + <= 35: Very common word + <= 70: Can be found in the dictionary + 80: Likely a valid word, can likely be found in an + unabridged dictionary + > 80: May not even be a legal word + +Sometimes the spelling of a word depends on the usage. If so the word +is listed more than once within a cluster, with any usage information +being indicated after a " | ". For example here is part of the cluster +for prize: + A B: prize | reward + A B: prizes | reward + A C: prize / B: prise | otherwise + A C: prizes / B: prises | otherwise +which indicated than the preferred spelling of prize is always with a +"z" when meaning a reward, but otherwise is spelled with a "s" is +British English. In the example above a brief definition of the word +is given, but often no such attempt is made, and the definition simply +consists of a number, for example: + A B: sake | :1 + A C: sake / Av B Cv: saki | :2 + +Sometimes part-of-speech (POS) info is given to help distinguish which +form is used. For example: + A B C: practice / AV Cv: practise | + A Cv: practice / AV B C: practise | +POS info is always given in the form "" and if a definition +is also given the POS info is always first. The POS tags used are as +follows: + : Noun + : Verb + : Adjective + : Adverb + +A "(-)" before the definition indicated a rarely used or archaic form +of a word, for example: + A B: bark | :1 + A: bark / Av B: barque | (-) ship + +A "--" indicates a note rather than definition. This is generally +used to indicate that the spelling of the plural form not depend on +the spelling of the root word, for example: + _: cabby / _.: cabbie + _: cabbies | -- plural + +Misc. notes on a particular form of a word are given after a "#" on +the same line. Misc. notes for the cluster are given at the end of +the cluster and are prefixed with "##", for example: + # coloration (level 50) + A B C: coloration / B. Cv: colouration + A B C: colorations / B. Cv: colourations + A B C: coloration's / B. Cv: colouration's + ## OED has coloration as the preferred spelling and discolouration as a + ## variant for British Engl or some reason +In the notes ODE (not to be confused with OED) stands for Oxford +Dictionary of English, "Ox" is used for any Oxford dictionary, and +"M-W" for Merriam-Webster. + +Earlier versions of varcon contained numerous errors. With version +5.0 massive effort has been made to correct many of these errors. +Clusters that have undergone some form of verification (and likely +correction) are marked with "". As of version 5.0, most +clusters with headwords word in common usage (SCOWL level 35 and +below) should now be checked, as well as many others. No effort was +made to check clusters with headwords in SCOWL level 80 and above; +many of those entries are unlikely to be in the dictionary anyway. + +The file variant-also.tab contains additional mappings between various +spellings of a word which are not yet in varcon.txt. No attempt is +made to distinguish the primary form of a word. The file +variant-infl.tab is like variant-also.tab except that it is created +automatically from the AGID inflection database. The file +variant-wroot.tab is like variant-infl.tab except that it also +included the root form of the word. + +The file voc.tab is similar to varcon.txt but converts between +vocabulary instead of spelling. Unlike varcon.tab it is a simple tab +separated file with the fields corresponding to the American, British, +and Canadian words. If more than one word if often used to describe +the same thing the words are separated with commas. The last column +contains additional notes on when the word is used. Unlike varcon.txt +it is generally not suitable for automatic conversion. + +The "make-variant" Perl script will combine varcon.txt, +variant-also.tab, and variant-infl.tab into one huge mapping and will +output the result to "variant.tab". If the "no-infl" option is given +than variant-infl.tab will not be included. + +The "split" script will split out the information in varcon.txt into +several word lists named as follows: + [-v][-uncommon].lst +where is one of: american, british, british_z, canadian, +common, or other. "common" is used for words which appear in +varcon.txt, yet are used in all versions of english, such as "prize", +and "other" is used for the "_" spelling category. The mapping from +the variant indicators in varcon.txt to the numeric variant level is +as follows: + v => 0 + V => 1 + - => 2 +"-uncommon" is used for forms marked with "(-)" as already described. + +The "translate" Perl script will translate a text file from one +spelling to another. Its usage is: + +translate [] + is any of + -?,-h,--help this screen + -m,--mark mark words where the translation is questionable + -i,--include include words where the translation is questionable + is the file name of the translation array, + defaults to "abbc.tab". + and are one of: american, british, british_z, or canadian. +british-ise and british-ize can also be used. + +Text is read in from standard input and is outputted to standard out. +Words are marked with a '?' before and after the questionable word +when the option is enabled. + +The file varcon.pm contains some library routines for parsing +varcon.txt and is used by many of the scripts above. + +If you discover any errors in these mappings or have suggestions for +additions please file a bug report at +https://github.com/kevina/wordlist/issues, or alternatively email me +directly at kevina@gnu.org, but I will likely tell you to file a bug +report so that I don't forget about it. + +SOURCE: + +These mappings were compiled from numerous sources. + +The abc.tab was originally created from the American and British word +lists found in the Ispell distribution and the Canadian word list +created by Garst R. Reese : + + What I have discovered is that Canadian is a modification of British. + Canadians use ize ization, izing izable like Americans, and gram instead + of gramme. The one exception I found was practise. It does not go to + practize. Otherwise they use British spelling. So, what I am currently + checking books with is a an edited version of British, where I have + changed all occurrences of ise to ize, isab to izab, isation to ization, + ising to izing, and gramme to gram except I allow programme, which is + sometimes proper unless you are talking about a computer program. I did + bunches of greps to be sure these substitutions would work as expected. + +Many other words have been added to abc.tab which were not in the +original Ispell word lists. + +Many different web sources were consulted when crating the tables. They +include: + + The American-British British-American Dictionary + http://www.peak.org/~jeremy/dictionary/dictionary.html + American and British Spelling Differences + http://www.peak.org/~jeremy/dictionary/spellcat.html + Dave (VE7CNV)'s Truly Canadian Dictionary of Canadian Spelling + http://www.luther.bc.ca/~dave7cnv/cdnspelling/cdnspelling.html + Canadian Spelling Convention + http://imej.wfu.edu/articles/1999/1/02/demo/tutorial/canas.html + Cornerstone's Canadian English Page + http://www.web.net/cornerstone/cdneng.htm + Inter-Play Translation: British/Canadian/American Spelling + http://www.inter-play.com/translation/spel-ukus.htm + Inter-Play Translation: British/Canadian/American Vocabulary + http://www.inter-play.com/translation/voc-ukus.htm + +As well as several online dictionaries: + + Marriam-Webster: http://www.m-w.com/ + American Heritage: http://www.bartleby.com/61/ + Cambridge (ESL): http://dictionary.cambridge.org/ + +In version 5.0 a massive effort to correct the numerous errors in +VarCon was done. The primary sources used for verification were: + + Marriam-Webster: http://www.m-w.com/ + Free version of Oxford Dictionaries Online: + http://www.oxforddictionaries.com/ + Oxford dictionaries available via Oxford Reference Online + (subscription service, http://www.oxfordreference.com/): + The New Oxford American Dictionary (2nd edition, 2006) + and sometimes: The Oxford American Dictionary of Current English (2002) + The Concise Oxford English Dictionary (11th edition revised, 2008) + and sometimes: The Oxford Dictionary of English (2nd edition revised, 2005) + The Canadian Oxford Dictionary (2004) + +I also used Tysto UK vs US spelling list available at: + http://www.tysto.com/articles05/q1/20050324uk-us.shtml +to make sure I didn't leave out any information in VarCon, however any +additions from his lists where verified using the dictionaries +mentioned above as his lists contained numerous errors (such as +including archaic spellings of words) + +I also made indirect use of Luke's Canadian, British and American +Spelling page available at: + http://www.lukemastin.com/testing/spelling/cgi-bin/database.cgi?database=spelling +but only to perform some initial verification, in the end I rechecked +his data using the dictionaries above. (However, his data is, by far, +more accurate than Tysto's) + +In Version 2016.11.20 Benjamin Titze added support for Australian English. +The primary sources for this addition were: + + The Macquarie Dictionary: https://www.macquariedictionary.com.au/ + Style Manual: For Authors, Editors and Printers, 6th Edition. DCITA. + University of Technology Sydney Publications Style Guide: + http://www.gsu.uts.edu.au/publications/styleguide/spelling.html + Style Manual, Department of Treasury and Finance, Tasmania: + http://conference.tasa.org.au/wp-content/uploads/2015/03/Style-Manual.pdf + Editor Australia - Style Guide: + http://www.editoraustralia.com/styleguide_spelling.html + Webster in Australia (history of "our"/"or" spelling variants): + http://blogs.usyd.edu.au/elac/2008/01/webster_in_australia.html + + +CHANGELOG: + +From 2017.08.24 to 2018.10.06 + + - Added entries for: eukaryote, prokaryote, virtualization, volcanism + +From 2016.11.20 to 2017.08.24 + + - Typo fixes thanks to Jakub Wilk + +From 2016.06.26 to 2016.11.20 + + - New Australian spelling category thanks to the work of Benjamin + Titze. + + - Various other fixes. + +From 2016.01.19 to 2016.06.26 + + - Fix plural of "bus". + +From 2015.08.24 to 2016.01.19 + + - Undo the effects of PERL_UNICODE in the translate script. + + - Other minor fixes and new entries. + +From 2014.02.15 to 2015.08.24 (Aug 24, 2015) + + - Added entry for Koran/Koranic. + + - Tweaked "adviser" cluster. + + - Fix formatting problems. + +From 2015.01.28 to 2014.02.15 (February 15, 2015) + + - Various new entries + +From 2014.11.17 to 2015.01.28 (January 28, 2015) + + - Minor adjustments to a few entries (analytic, amid) + + - Added entry for shareable + + - Remove a junk entry (ted/taed). + +From 2014.08.11 to 2014.11.17 (November 17, 2014) + + - Fix typos in README + + - Enhancement to VarCon translate script. It will now, by default, + filter clusters with a SCOWL level > 80. This behavior can be + controlled with the new "--thresh" option. + + - Remove a few junk entries. + +From Revision 5.1 to Version 2014.08.11 (August 8, 2014) + + - Various corrections. Most of them minor. Two notable exceptions: + + - Added an entry for furor as the correct British spelling is furore + + - Fixed racket entries as Canadians still use racquet even + though it is a British English (at least according to the + Oxford dictionaries) + + - Other minor changes. + +From Revision 5.0 to Revision 5.1 (January 6, 2010) + + - Corrected numerous errors after running various forms + of verification on varcon.txt. + + - Reordered the clusters in varcon.txt so that they are + mostly in alphabetic order based on the headword. + +From Revision 4.1 to Revision 5.0 (December 27, 2010) + + - Completely new format for the main table which, in addition to + providing the preferred spelling of a word for various forms of + English, also records variant and other information. To reflect + this change, the name of the file was renamed from abbc.tab to + varcon.txt. + + - Massive effort to verify the variant information against + authoritative sources (mainly Oxford dictionaries). Most entries + for common words (SCOWL level 35 and below) have been checked + against at least a British and Canadian dictionary. + + - Added variant information for numerous other words, even when + there is no difference between the various forms on English. + + - Other changes corresponding to the new format. + +From Revision 4 to Revision 4.1 (August 10, 2004) + + - Fixed various errors in abbc.tab + + - Removed clause 4 from the Ispell copyright with permission of Geoff + Kuenning. + +From Revision 3 to Revision 4 (August 7, 2004) + + - Added a column to "abc.tab" for the British "ize" spelling and + renamed the file to abbc.tab. + - Added verb forms of prize/prise to abbc.tab, removed from + variant-also.tab + +From Revision 2 to Revision 3 (January 2, 2003) + + - Added an option for not including variant-infl.tab for the + make-variant perl script + - Added the file variant-wroot.tab + - Added a few entries given to me by Francis Bond and Edward Betts + +From Revision 1 to Revision 2 (January 27, 2001) + + - Removed all "B" markers because I could not find any evidence for + them + - Corrected a few Canadian entries, especially those with the "B" + markers + - Added some more entries by trying fixed changes (such as ize to + ise) to words in SCOWL and hand-checking over the ones with semi-common + words in them. + - Added variant-infl.tab + +COPYRIGHT: + +Copyright 2000-2018 by Kevin Atkinson + +Permission to use, copy, modify, distribute and sell this array, the +associated software, and its documentation for any purpose is hereby +granted without fee, provided that the above copyright notice appears +in all copies and that both that copyright notice and this permission +notice appear in supporting documentation. Kevin Atkinson makes no +representations about the suitability of this array for any +purpose. It is provided "as is" without express or implied warranty. + +Copyright 2016 by Benjamin Titze + +Permission to use, copy, modify, distribute and sell this array, the +associated software, and its documentation for any purpose is hereby +granted without fee, provided that the above copyright notice appears +in all copies and that both that copyright notice and this permission +notice appear in supporting documentation. Benjamin Titze makes no +representations about the suitability of this array for any +purpose. It is provided "as is" without express or implied warranty. + +Since the original words lists come from the Ispell distribution: + +Copyright 1993, Geoff Kuenning, Granada Hills, CA +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All modifications to the source code must be clearly marked as + such. Binary redistributions based on modified source code + must be clearly marked as modified versions in the documentation + and/or other materials provided with the distribution. +(clause 4 removed with permission from Geoff Kuenning) +5. The name of Geoff Kuenning may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. diff --git a/crates/varcon/assets/varcon.txt b/crates/varcon/assets/varcon.txt new file mode 100644 index 0000000..73c0da5 --- /dev/null +++ b/crates/varcon/assets/varcon.txt @@ -0,0 +1,32432 @@ +# abettor (level 50) +A Bv C: abettor / Av B: abetter +A Bv C: abettors / Av B: abetters +A Bv C: abettor's / Av B: abetter's + +# abnormalize (level 95) +A Z: abnormalize / B: abnormalise + +# abnormalized (level 95) +A Z: abnormalized / B: abnormalised + +# abnormalizing (level 95) +A Z: abnormalizing / B: abnormalising + +# abolitionize (level 95) +A Z: abolitionize / B: abolitionise + +# abolitionized (level 95) +A Z: abolitionized / B: abolitionised + +# abolitionizing (level 95) +A Z: abolitionizing / B: abolitionising + +# abridgment (level 40) +A BV Cv Dv: abridgment / B C D: abridgement +A BV Cv Dv: abridgments / B C D: abridgements +A BV Cv Dv: abridgment's / B C D: abridgement's + +# absinthe (level 50) +A: absinthe / AV B: absinth | :1 +A B: absinthe | :2 +A: absinthes / AV B: absinths | :1 +A B: absinthes | :2 +A: absinthe's / AV B: absinth's | :1 +A B: absinthe's | :2 + +# academize (level 95) +A Z: academize / B: academise + +# academized (level 95) +A Z: academized / B: academised + +# academizing (level 95) +A Z: academizing / B: academising + +# acalephe (level 80) +A: acalephe / B: acalephae + +# accessorize (level 55) +A Z: accessorize / B: accessorise +A Z: accessorized / B: accessorised +A Z: accessorizing / B: accessorising +A Z: accessorizes / B: accessorises + +# acclimatizable (level 80) +A Z: acclimatizable / B: acclimatisable + +# acclimatization (level 50) +A Z: acclimatization / B: acclimatisation +A Z: acclimatization's / B: acclimatisation's + +# acclimatize (level 35) +A Z: acclimatize / B: acclimatise +A Z: acclimatized / B: acclimatised +A Z: acclimatizing / B: acclimatising +A Z: acclimatizes / B: acclimatises + +# acclimatizer (level 80) +A Z: acclimatizer / B: acclimatiser +A Z: acclimatizers / B: acclimatisers + +# accorage (level 80) +A: accorage / B: accourage +A: accoraged / B: accouraged +A: accoraging / B: accouraging +A: accorages / B: accourages + +# accouter (level 60) +A: accouter / Av B: accoutre +A: accoutered / Av B: accoutred +A: accoutering / Av B: accoutring +A: accouters / Av B: accoutres + +# accouterment (level 50) +A: accouterment / Av B: accoutrement +A: accouterments / Av B: accoutrements +A: accouterment's / Av B: accoutrement's + +# accursed (level 50) +A B: accursed / AV B-: accurst # ODE: archaic, M-W: "or" but can find little evidence of use + +# Acemetae (level 95) +A Dv: Acemetae / B D: Acoemetae +A Dv: Acemetae's / B D: Acoemetae's + +# Acemetic (level 95) +A Dv: Acemetic / B D: Acoemetic +A Dv: Acemetic's / B D: Acoemetic's + +# Acer (level 70) +A: Acer / B: Acre +A: Acer's / B: Acre's + +# acetonemia (level 95) +A Dv: acetonemia / B D: acetonaemia + +# acetonemic (level 95) +A Dv: acetonemic / B D: acetonaemic + +# achenia (level 95) +A Dv: achenia / B D: achaenia + +# achenium (level 80) +A Dv: achenium / B D: achaenium +A Dv: acheniums / B D: achaeniums + +# achenocarp (level 80) +A Dv: achenocarp / B D: achaenocarp + +# achroiocythemia (level 95) +A Dv: achroiocythemia / B D: achroiocythaemia + +# achromatization (level 80) +A Z: achromatization / B: achromatisation +A Z: achromatizations / B: achromatisations +A Z: achromatization's / B: achromatisation's + +# achromatize (level 70) +A Z: achromatize / B: achromatise +A Z: achromatized / B: achromatised +A Z: achromatizing / B: achromatising +A Z: achromatizes / B: achromatises + +# acidemia (level 80) +A Dv: acidemia / B D: acidaemia + +# acknowledgment (level 35) +A Cv: acknowledgment / Av B C: acknowledgement +A Cv: acknowledgments / Av B C: acknowledgements +A Cv: acknowledgment's / Av B C: acknowledgement's + +# acmesthesia (level 95) +A: acmesthesia / B: acmaesthesia + +# acroanesthesia (level 95) +A: acroanesthesia / B: acroanaesthesia + +# acroesthesia (level 95) +A: acroesthesia / B: acroaesthesia + +# actualization (level 40) +A Z: actualization / B: actualisation +A Z: actualizations / B: actualisations +A Z: actualization's / B: actualisation's + +# actualize (level 50) +A Z: actualize / B: actualise +A Z: actualized / B: actualised +A Z: actualizing / B: actualising +A Z: actualizes / B: actualises + +# acuesthesia (level 95) +A: acuesthesia / B: acuaesthesia + +# adapter (level 20) +A Bv C: adapter / AV B Cv: adaptor +A Bv C: adapters / AV B Cv: adaptors +A Bv C: adapter's / AV B Cv: adaptor's + +# addable (level 60) +_: addable / _v: addible + +# addenda (level 50) +_: addenda / _V: addendums + +# adjuster (level 50) +_: adjuster / _V: adjustor +_: adjusters / _V: adjustors +_: adjuster's / _V: adjustor's + +# adonize (level 70) +A Z: adonize / B: adonise +A Z: adonized / B: adonised +A Z: adonizing / B: adonising +A Z: adonizes / B: adonises + +# adulterize (level 80) +A Z: adulterize / B: adulterise +A Z: adulterized / B: adulterised +A Z: adulterizing / B: adulterising +A Z: adulterizes / B: adulterises + +# advene (level 80) +A: advene / B: advenae + +# adverbialize (level 80) +A Z: adverbialize / B: adverbialise +A Z: adverbialized / B: adverbialised +A Z: adverbializing / B: adverbialising +A Z: adverbializes / B: adverbialises + +# advertise (level 10) +A B: advertise / A-: advertize +A B: advertised / A-: advertized +A B: advertising / A-: advertizing +A B: advertises / A-: advertizes + +# advertisement (level 20) +A B: advertisement / A-: advertizement +A B: advertisements / A-: advertizements +A B: advertisement's / A-: advertizement's + +# advertizable (level 95) +A Z: advertizable / B: advertisable + +# adviser (level 20) +A B C: adviser / A. Bv C.: advisor +A B C: advisers / A. Bv C.: advisors +A B C: adviser's / A. Bv C.: advisor's +## The oxford dictionary has this to say: +## The spellings adviser and advisor are both correct. Adviser is more +## common, but advisor is also widely used , especially in North +## America. Adviser may be seen as less formal, while advisor often +## suggests an official position. + +# adze (level 50) +A B: adze / Av: adz +A B: adze's / Av: adz's + +# Aedon (level 95) +A: Aedon / B: Aaedon +A: Aedon's / B: Aaedon's + +# Aeetes (level 95) +A: Aeetes / B: Aeaetes +A: Aeetes's / B: Aeaetes's + +# aegis (level 50) +A B: aegis / AV: egis +A B: aegises / AV: egises +A B: aegis's / AV: egis's + +# aerialness (level 95) +A: aerialness / B: aaerialness +A: aerialness's / B: aaerialness's + +# aeric (level 80) +A: aeric / B: areic +A: eric / B: aeric + +# aerie (level 50) +_: aerie / _V: aery / _-: eyry +_ _V: aeries / _-: eyries +_: aerie's / _V: aery's / _-: eyry's + +# aerogram (level 55) +_: aerogram / _v: aerogramme +_: aerograms / _v: aerogrammes + +# aerographer (level 80) +A: aerographer / B: areographer + +# aerographic (level 80) +A: aerographic / B: areographic + +# aerographical (level 95) +A: aerographical / B: areographical + +# aerography (level 70) +A: aerography / B: areography +A: aerographies / B: areographies +A: aerography's / B: areography's + +# aerologic (level 80) +A: aerologic / B: areologic + +# aerological (level 80) +A: aerological / B: areological + +# aerologist (level 80) +A: aerologist / B: areologist +A: aerologist's / B: areologist's + +# aerology (level 70) +A: aerology / B: areology +A: aerologies / B: areologies +A: aerology's / B: areology's + +# aerometer (level 70) +A: aerometer / B: areometer +A: aerometers / B: areometers + +# aerometric (level 80) +A: aerometric / B: areometric +A: areometric / B: araeometric + +# Aerope (level 95) +A: Aerope / B: Aaerope +A: Aerope's / B: Aaerope's + +# aesthete (level 50) +A B: aesthete / AV: esthete +A B: aesthetes / AV: esthetes +A B: aesthete's / AV: esthete's + +# aestheticize (level 80) +A Z: aestheticize / B: aestheticise +A Z: aestheticized / B: aestheticised +A Z: aestheticizing / B: aestheticising +A Z: aestheticizes / B: aestheticises + +# affeer (level 80) +A: affeer / B: affere + +# Africanization (level 80) +A Z: Africanization / B: Africanisation +A Z: Africanizations / B: Africanisations +A Z: Africanization's / B: Africanisation's + +# Africanize (level 70) +A Z: Africanize / B: Africanise +A Z: Africanized / B: Africanised +A Z: Africanizing / B: Africanising +A Z: Africanizes / B: Africanises + +# Afrikanerization (level 99) +A Z: Afrikanerization / B: Afrikanerisation + +# Afrikanerize (level 95) +A Z: Afrikanerize / B: Afrikanerise +A Z: Afrikanerized / B: Afrikanerised +A Z: Afrikanerizing / B: Afrikanerising +A Z: Afrikanerizes / B: Afrikanerises + +# afterwards (level 10) +A B C: afterwards / A. Cv: afterward + +# agathodemon (level 95) +A: agathodemon / B: agathodaemon + +# agatize (level 80) +A Z: agatize / B: agatise +A Z: agatizes / B: agatises + +# ageism (level 50) +_: ageism / _V: agism + +# agenize (level 80) +A Z: agenize / B: agenise + +# ager (level 80) +A: ager / B: agre + +# aggrandizable (level 95) +A Z: aggrandizable / B: aggrandisable +A Z: aggrandizables / B: aggrandisables +A Z: aggrandizable's / B: aggrandisable's + +# aggrandization (level 99) +A Z: aggrandization / B: aggrandisation + +# aggrandize (level 50) +A Z: aggrandize / B: aggrandise +A Z: aggrandized / B: aggrandised +A Z: aggrandizing / B: aggrandising +A Z: aggrandizes / B: aggrandises + +# aggrandizement (level 50) +A Z: aggrandizement / B: aggrandisement +A Z: aggrandizements / B: aggrandisements +A Z: aggrandizement's / B: aggrandisement's + +# aggrandizer (level 70) +A Z: aggrandizer / B: aggrandiser +A Z: aggrandizers / B: aggrandisers +A Z: aggrandizer's / B: aggrandiser's + +# aging (level 20) +A Bv C: aging / Av B Cv: ageing +A Bv C: agings / Av B Cv: ageings +A Bv C: aging's / Av B Cv: ageing's + +# agnize (level 80) +A Z: agnize / B: agnise +A Z: agnized / B: agnised +A Z: agnizing / B: agnising +A Z: agnizes / B: agnises + +# agonize (level 35) +A Z: agonize / B: agonise +A Z: agonized / B: agonised +A Z: agonizing / B: agonising +A Z: agonizes / B: agonises + +# agonizedly (level 80) +A Z: agonizedly / B: agonisedly +A Z: agonizedlies / B: agonisedlies + +# agonizer (level 95) +A Z: agonizer / B: agoniser +A Z: agonizers / B: agonisers + +# agonizingly (level 40) +A Z: agonizingly / B: agonisingly +A Z: agonizinglier / B: agonisinglier +A Z: agonizingliest / B: agonisingliest + +# agrarianize (level 95) +A Z: agrarianize / B: agrarianise +A Z: agrarianizes / B: agrarianises + +# agrize (level 80) +A Z: agrize / B: agrise +A Z: agrized / B: agrised +A Z: agrizing / B: agrising +A Z: agrizes / B: agrises + +# aguize (level 80) +A Z: aguize / B: aguise +A Z: aguized / B: aguised +A Z: aguizing / B: aguising +A Z: aguizes / B: aguises + +# aiger (level 95) +A: aiger / B: aigre + +# airfoil (level 50) +A C: airfoil / B: aerofoil +A C: airfoils / B: aerofoils +A C: airfoil's / B: aerofoil's + +# airgel (level 80) +A: airgel / B: aerogel + +# air_gun (level 55) +_: air_gun / _v: airgun + +# air_letter (level 55) +_: air_letter / _v: airletter + +# airplane (level 35) +A C DV: airplane / B D: aeroplane +A C DV: airplanes / B D: aeroplanes +A C DV: airplane's / B D: aeroplane's + +# airstrike (level 55) +_: airstrike / _v: air_strike +_: airstrikes / _v: air_strikes +_: airstrike's / _v: air_strike's + +# aker (level 95) +A: aker / B: akre + +# Aktistete (level 95) +A: Aktistete / B: Aktistetae +A: Aktistete's / B: Aktistetae's + +# albitize (level 80) +A Z: albitize / B: albitise +A Z: albitized / B: albitised +A Z: albitizing / B: albitising +A Z: albitizes / B: albitises + +# albumenization (level 95) +A: albumenization / B: albuminisation / Z: albuminization +A: albumenizations / B: albuminisations / Z: albuminizations +A: albumenization's / B: albuminisation's / Z: albuminization's + +# albumenize (level 70) +A: albumenize / B: albuminise / Z: albuminize +A: albumenized / B: albuminised / Z: albuminized +A: albumenizing / B: albuminising / Z: albuminizing +A: albumenizes / B: albuminises / Z: albuminizes + +# albumenizer (level 95) +A Z: albumenizer / B: albumeniser + +# alchemize (level 70) +A Z: alchemize / B: alchemise +A Z: alchemized / B: alchemised +A Z: alchemizing / B: alchemising +A Z: alchemizes / B: alchemises + +# Alcide (level 80) +A: Alcide / B: Alcidae +A: Alcide's / B: Alcidae's + +# Alcithoe (level 95) +A: Alcithoe / B: Alcithoae +A: Alcithoe's / B: Alcithoae's + +# alcoholizable (level 95) +A Z: alcoholizable / B: alcoholisable +A Z: alcoholizables / B: alcoholisables +A Z: alcoholizable's / B: alcoholisable's + +# alcoholization (level 80) +A Z: alcoholization / B: alcoholisation +A Z: alcoholizations / B: alcoholisations +A Z: alcoholization's / B: alcoholisation's + +# alcoholize (level 70) +A Z: alcoholize / B: alcoholise +A Z: alcoholized / B: alcoholised +A Z: alcoholizing / B: alcoholising +A Z: alcoholizes / B: alcoholises + +# aleucemic (level 95) +A: aleucemic / B: aleucaemic + +# aleukemic (level 95) +A: aleukemic / B: aleukaemic + +# Aleus (level 95) +A: Aleus / B: Aloeus +A: Aleus's / B: Aloeus's + +# algebraization (level 95) +A Z: algebraization / B: algebraisation +A Z: algebraizations / B: algebraisations +A Z: algebraization's / B: algebraisation's + +# algebraize (level 95) +A Z: algebraize / B: algebraise +A Z: algebraizes / B: algebraises + +# algesthesis (level 95) +A: algesthesis / B: algaesthesis + +# alienize (level 95) +A Z: alienize / B: alienise +A Z: alienizes / B: alienises + +# align (level 20) +A B: align / AV: aline +A B: aligned / AV: alined +A B: aligning / AV: alining +A B: aligns / AV: alines + +# alignment (level 20) +A B: alignment / AV: alinement +A B: alignments / AV: alinements +A B: alignment's / AV: alinement's + +# alkalinization (level 80) +A Z: alkalinization / B: alkalinisation +A Z: alkalinizations / B: alkalinisations +A Z: alkalinization's / B: alkalinisation's + +# alkalinize (level 70) +A Z: alkalinize / B: alkalinise +A Z: alkalinized / B: alkalinised +A Z: alkalinizing / B: alkalinising +A Z: alkalinizes / B: alkalinises + +# alkalizable (level 95) +A Z: alkalizable / B: alkalisable + +# alkalization (level 70) +A Z: alkalization / B: alkalisation +A Z: alkalizations / B: alkalisations +A Z: alkalization's / B: alkalisation's + +# alkalize (level 60) +A Z: alkalize / B: alkalise +A Z: alkalized / B: alkalised +A Z: alkalizing / B: alkalising +A Z: alkalizes / B: alkalises + +# alkalizer (level 95) +A Z: alkalizer / B: alkaliser +A Z: alkalizer's / B: alkaliser's + +# allegorization (level 80) +A Z: allegorization / B: allegorisation +A Z: allegorizations / B: allegorisations +A Z: allegorization's / B: allegorisation's + +# allegorize (level 70) +A Z: allegorize / B: allegorise +A Z: allegorized / B: allegorised +A Z: allegorizing / B: allegorising +A Z: allegorizes / B: allegorises + +# allegorizer (level 80) +A Z: allegorizer / B: allegoriser +A Z: allegorizers / B: allegorisers +A Z: allegorizer's / B: allegoriser's + +# alleluia (level 50) +_: alleluia / _V: halleluiah +_: alleluias / _V: halleluiahs +_: alleluia's / _V: halleluiah's + +# alloxuremia (level 95) +A: alloxuremia / B: alloxuraemia + +# almanac (level 35) +A B C: almanac / Bv: almanack +A B C: almanacs / Bv: almanacks + +# alphabetization (level 60) +A Z: alphabetization / B: alphabetisation +A Z: alphabetizations / B: alphabetisations +A Z: alphabetization's / B: alphabetisation's + +# alphabetize (level 50) +A Z: alphabetize / B: alphabetise +A Z: alphabetized / B: alphabetised +A Z: alphabetizing / B: alphabetising +A Z: alphabetizes / B: alphabetises + +# alphabetizer (level 60) +A Z: alphabetizer / B: alphabetiser +A Z: alphabetizers / B: alphabetisers +A Z: alphabetizer's / B: alphabetiser's + +# alternize (level 95) +A Z: alternize / B: alternise +A Z: alternizes / B: alternises + +# althea (level 80) +A Dv: althea / B D: althaea +A Dv: altheas / B D: althaeas +A Dv: althea's / B D: althaea's + +# althein (level 95) +A: althein / B: althaein + +# although (level 10) +A B: although / AV: altho + +# aluminization (level 99) +A Z: aluminization / B: aluminisation + +# aluminize (level 70) +A Z: aluminize / B: aluminise +A Z: aluminized / B: aluminised +A Z: aluminizing / B: aluminising +A Z: aluminizes / B: aluminises + +# aluminum (level 35) +A C: aluminum / B: aluminium +A C: aluminums / B: aluminiums +A C: aluminum's / B: aluminium's + +# alumni (level 40) +_: alumni / _-: alumnuses + +# alveole (level 80) +A: alveole / B: alveolae + +# amalgamatize (level 95) +A Z: amalgamatize / B: amalgamatise +A Z: amalgamatizes / B: amalgamatises + +# amalgamization (level 95) +A Z: amalgamization / B: amalgamisation +A Z: amalgamizations / B: amalgamisations +A Z: amalgamization's / B: amalgamisation's + +# amalgamize (level 95) +A Z: amalgamize / B: amalgamise +A Z: amalgamizes / B: amalgamises + +# Amalthea (level 95) +A: Amalthea / B: Amalthaea +A: Amalthea's / B: Amalthaea's + +# ambiance (level 35) +A Bv: ambiance / A. B: ambience +A Bv: ambiances / A. B: ambiences +A Bv: ambiance's / A. B: ambience's + +# ambicolorate (level 95) +A: ambicolorate / B: ambicolourate + +# ambicoloration (level 95) +A: ambicoloration / B: ambicolouration + +# ambilevous (level 95) +A: ambilevous / B: ambilaevous + +# ameban (level 80) +A Dv: ameban / B D: amoeban + +# amebean (level 80) +A Dv: amebean / B D: amoebean + +# amebian (level 95) +A Dv: amebian / B D: amoebian + +# amebiasis (level 80) +A Dv: amebiasis / B D: amoebiasis +A Dv: amebiases / B D: amoebiases + +# amebicidal (level 95) +A Dv: amebicidal / B D: amoebicidal + +# amebicide (level 95) +A Dv: amebicide / B D: amoebicide + +# amebid (level 95) +A Dv: amebid / B D: amoebid + +# amebiform (level 80) +A Dv: amebiform / B D: amoebiform + +# amebiosis (level 95) +A Dv: amebiosis / B D: amoebiosis + +# amebocyte (level 70) +A Dv: amebocyte / B D: amoebocyte +A Dv: amebocytes / B D: amoebocytes +A Dv: amebocyte's / B D: amoebocyte's + +# ameboidism (level 95) +A Dv: ameboidism / B D: amoeboidism +A Dv: ameboidism's / B D: amoeboidism's + +# amebous (level 95) +A Dv: amebous / B D: amoebous + +# amebula (level 95) +A Dv: amebula / B D: amoebula + +# amenorrhea (level 70) +A C Dv: amenorrhea / B Cv D: amenorrhoea +A C Dv: amenorrheas / B Cv D: amenorrhoeas +A C Dv: amenorrhea's / B Cv D: amenorrhoea's + +# amenorrheal (level 80) +A C Dv: amenorrheal / B Cv D: amenorrhoeal + +# amenorrheic (level 70) +A C Dv: amenorrheic / B Cv D: amenorrhoeic + +# Americanization (level 50) +A Z: Americanization / B: Americanisation +A Z: Americanizations / B: Americanisations +A Z: Americanization's / B: Americanisation's +A Z: americanization / B: americanisation + +# Americanize (level 50) +A Z: Americanize / B: Americanise +A Z: Americanized / B: Americanised +A Z: Americanizing / B: Americanising +A Z: Americanizes / B: Americanises +A Z: americanized / B: americanised + +# Americanizer (level 95) +A Z: Americanizer / B: Americaniser +A Z: Americanizers / B: Americanisers +A Z: Americanizer's / B: Americaniser's + +# amid (level 35) +A B: amid / Av Bv: amidst +B: amidst | literary variant +## amidst literary variant according to oxford dictionaries + +# ammocete (level 80) +A Dv: ammocete / B D: ammocoete +A Dv: ammocetes / B D: ammocoetes +A Dv: ammocete's / B D: ammocoete's + +# ammoniemia (level 95) +A: ammoniemia / B: ammoniaemia + +# amoeba (level 35) +A Av1 B Bv D: amoeba / Av2 Dv: ameba +A B D: amoebas / Av1 Bv Dv: amoebae / Av2 Dv: amebas / Av2 Dv: amebae +A Av1 B Bv D: amoeba's / Av2 Dv: ameba's +## If ameba not variant than: A2: amebas / Av2: amebae + +# amoebic (level 50) +A B D: amoebic / Av Dv: amebic + +# amoeboid (level 60) +A B D: amoeboid / Av Dv: ameboid + +# amok (level 35) +A B: amok / A. Bv: amuck +A B: amoks / A. Bv: amucks +A B: amok's / A. Bv: amuck's + +# among (level 10) +A B. Z: among / AV B Zv: amongst + +# amoralize (level 95) +A Z: amoralize / B: amoralise +A Z: amoralizes / B: amoralises + +# amoret (level 80) +A: amoret / B: amouret + +# amorism (level 80) +A: amorism / B: amourism +A: amorisms / B: amourisms +A: amorism's / B: amourism's + +# amorist (level 70) +A: amorist / B: amourist +A: amorists / B: amourists +A: amorist's / B: amourist's + +# amoristic (level 80) +A: amoristic / B: amouristic +A: amoristics / B: amouristics + +# amorphization (level 99) +A Z: amorphization / B: amorphisation + +# amorphize (level 99) +A Z: amorphize / B: amorphise + +# amortizable (level 55) +A Z: amortizable / B: amortisable +A Z: amortizabler / B: amortisabler +A Z: amortizables / B: amortisables +A Z: amortizablest / B: amortisablest +A Z: amortizable's / B: amortisable's + +# amortization (level 50) +A Z: amortization / B: amortisation +A Z: amortizations / B: amortisations +A Z: amortization's / B: amortisation's + +# amortize (level 50) +A Z: amortize / B: amortise +A Z: amortized / B: amortised +A Z: amortizing / B: amortising +A Z: amortizes / B: amortises + +# amortizement (level 70) +A Z: amortizement / B: amortisement +A Z: amortizements / B: amortisements +A Z: amortizement's / B: amortisement's + +# amphigean (level 95) +A: amphigean / B: amphigaean + +# amphitheater (level 35) +A Cv: amphitheater / B C: amphitheatre +A Cv: amphitheaters / B C: amphitheatres +A Cv: amphitheater's / B C: amphitheatre's + +# ampule (level 50) +_: ampule / _v: ampoule / _V: ampul +_: ampules / _v: ampoules / _V: ampuls +_: ampule's / _v: ampoule's / _V: ampul's + +# amygdale (level 80) +A: amygdale / B: amygdalae + +# amyxorrhea (level 95) +A: amyxorrhea / B: amyxorrhoea + +# anabaptize (level 80) +A Z: anabaptize / B: anabaptise +A Z: anabaptized / B: anabaptised +A Z: anabaptizing / B: anabaptising +A Z: anabaptizes / B: anabaptises + +# anagrammatize (level 70) +A Z: anagrammatize / B: anagrammatise +A Z: anagrammatized / B: anagrammatised +A Z: anagrammatizing / B: anagrammatising +A Z: anagrammatizes / B: anagrammatises + +# analog (level 10) +A B: analogue / A.: analog | analogous +A B: analogue's / A.: analog's | analogous +A B: analogues / A.: analogs | analogous +A Bv C D: analog / B Dv: analogue | vs. digital +A Bv C D: analog's / B Dv: analogue's | vs. digital +A Bv C D: analogs / B Dv: analogues | vs. digital +## Oxford thinks the US spelling of analogue is always analog, but M-W +## gives analogue as the correct spelling when relating to analogous, +## and it doesn't even offer analog as a variant. +## Macquarie prefers analog to analogue in the sense "vs digital". + +# analogize (level 60) +A Z: analogize / B: analogise +A Z: analogized / B: analogised +A Z: analogizing / B: analogising +A Z: analogizes / B: analogises + +# analytic (level 35) +_: analytic | linguistics +_: analytical / _.: analytic + +# analytically (level 50) +_: analytically / _v: analyticalally + +# analyticiti (level 99) +_: analyticiti / _v: analyticaliti +_: analyticitis / _v: analyticalitis + +# analyticity (level 80) +_: analyticity / _v: analyticality + +# analyzability (level 80) +A C: analyzability / B: analysability +A C: analyzability's / B: analysability's + +# analyzable (level 60) +A C: analyzable / B: analysable +A C: analyzabler / B: analysabler +A C: analyzablest / B: analysablest + +# analyzation (level 80) +A C: analyzation / B: analysation +A C: analyzations / B: analysations +A C: analyzation's / B: analysation's + +# analyze (level 20) +A C: analyze / B Cv: analyse +A C: analyzed / B Cv: analysed +A C: analyzing / B Cv: analysing +A C: analyzes / B Cv: analyses +A B: analyses | [analysis] + +# analyzer (level 35) +A C: analyzer / B: analyser +A C: analyzers / B: analysers +A C: analyzer's / B: analyser's + +# anapestically (level 95) +A: anapestically / B: anapaestically + +# anapneic (level 95) +A: anapneic / B: anapnoeic + +# anarchize (level 80) +A Z: anarchize / B: anarchise +A Z: anarchized / B: anarchised +A Z: anarchizing / B: anarchising +A Z: anarchizes / B: anarchises + +# anathematization (level 80) +A Z: anathematization / B: anathematisation +A Z: anathematizations / B: anathematisations +A Z: anathematization's / B: anathematisation's + +# anathematize (level 60) +A Z: anathematize / B: anathematise +A Z: anathematized / B: anathematised +A Z: anathematizing / B: anathematising +A Z: anathematizes / B: anathematises + +# anathematizer (level 95) +A Z: anathematizer / B: anathematiser +A Z: anathematizer's / B: anathematiser's + +# anatomizable (level 95) +A Z: anatomizable / B: anatomisable + +# anatomization (level 80) +A Z: anatomization / B: anatomisation +A Z: anatomization's / B: anatomisation's + +# anatomize (level 60) +A Z: anatomize / B: anatomise +A Z: anatomized / B: anatomised +A Z: anatomizing / B: anatomising +A Z: anatomizes / B: anatomises + +# anatomizer (level 95) +A Z: anatomizer / B: anatomiser +A Z: anatomizer's / B: anatomiser's + +# Anchinoe (level 95) +A: Anchinoe / B: Anchinoae +A: Anchinoe's / B: Anchinoae's + +# ancille (level 80) +A: ancille / B: ancillae + +# anematosis (level 95) +A: anematosis / B: anaematosis + +# anemia (level 35) +A C Dv: anemia / B D: anaemia +A C Dv: anemias / B D: anaemias +A C Dv: anemia's / B D: anaemia's + +# anemic (level 35) +A C Dv: anemic / B D: anaemic +A C Dv: anemicer / B D: anaemicer +A C Dv: anemicest / B D: anaemicest +A C Dv: anemics / B D: anaemics + +# anemically (level 60) +A C Dv: anemically / B D: anaemically + +# aneretic (level 95) +A: aneretic / B: anaeretic + +# anesis (level 80) +A: anesis / B: anoesis + +# anesthesia (level 35) +A Cv Dv: anesthesia / B C D: anaesthesia +A Cv Dv: anesthesias / B C D: anaesthesias +A Cv Dv: anesthesia's / B C D: anaesthesia's + +# anesthesiant (level 95) +A Cv Dv: anesthesiant / B C D: anaesthesiant + +# anesthesiologist (level 40) +A C Dv: anesthesiologist / B D: anaesthesiologist +A C Dv: anesthesiologists / B D: anaesthesiologists +A C Dv: anesthesiologist's / B D: anaesthesiologist's + +# anesthesiology (level 50) +A C Dv: anesthesiology / B D: anaesthesiology +A C Dv: anesthesiologies / B D: anaesthesiologies +A C Dv: anesthesiology's / B D: anaesthesiology's + +# anesthesis (level 80) +A C Dv: anesthesis / B D: anaesthesis + +# anesthetic (level 35) +A Cv Dv: anesthetic / B C D: anaesthetic +A Cv Dv: anestheticer / B C D: anaestheticer +A Cv Dv: anestheticest / B C D: anaestheticest +A Cv Dv: anesthetics / B C D: anaesthetics +A Cv Dv: anesthetic's / B C D: anaesthetic's + +# anesthetically (level 70) +A Cv Dv: anesthetically / B C D: anaesthetically + +# anesthetist (level 40) +A Cv Dv: anesthetist / B C D: anaesthetist +A Cv Dv: anesthetists / B C D: anaesthetists +A Cv Dv: anesthetist's / B C D: anaesthetist's + +# anesthetization (level 60) +A: anesthetization / B D: anaesthetisation / Z: anaesthetization / Dv: anesthetisation +A: anesthetizations / B D: anaesthetisations / Z: anaesthetizations / Dv: anesthetisation +A: anesthetization's / B D: anaesthetisation's / Z: anaesthetization's / Dv: anesthetisation + +# anesthetize (level 40) +A Cv: anesthetize / B D: anaesthetise / C Z: anaesthetize / Dv: anesthetise +A Cv: anesthetized / B D: anaesthetised / C Z: anaesthetized / Dv: anesthetised +A Cv: anesthetizing / B D: anaesthetising / C Z: anaesthetizing / Dv: anesthetising +A Cv: anesthetizes / B D: anaesthetises / C Z: anaesthetizes / Dv: anesthetises + +# anesthetizer (level 95) +A: anesthetizer / B D: anaesthetiser / Z: anaesthetizer / Dv: anesthetiser +A: anesthetizers / B D: anaesthetisers / Z: anaesthetizers / Dv: anesthetisers + +# anesthyl (level 95) +A: anesthyl / B: anaesthyl + +# anestri (level 80) +A Dv: anestri / B D: anoestri + +# anestrous (level 80) +A Dv: anestrous / B D: anoestrous + +# anestrum (level 80) +A Dv: anestrum / B D: anoestrum +A Dv: anestra / B D: anoestra + +# anestrus (level 80) +A Dv: anestrus / B D: anoestrus +A Dv: anestruses / B D: anoestruses +A Dv: anestrus's / B D: anoestrus's + +# anetic (level 80) +A Dv: anetic / B D: anoetic + +# anetiological (level 95) +A Dv: anetiological / B D: anaetiological + +# aneurysm (level 50) +_: aneurysm / _V: aneurism +_: aneurysms / _V: aneurisms +_: aneurysm's / _V: aneurism's + +# angelicize (level 95) +A Z: angelicize / B: angelicise +A Z: angelicizes / B: angelicises + +# angelize (level 95) +A Z: angelize / B: angelise +A Z: angelizes / B: angelises + +# Anglicanize (level 95) +A Z: Anglicanize / B: Anglicanise +A Z: Anglicanizes / B: Anglicanises +A Z: Anglicanize's / B: Anglicanise's + +# anglicization (level 70) +A Z: anglicization / B: anglicisation +A Z: anglicizations / B: anglicisations +A Z: anglicization's / B: anglicisation's + +# anglicize (level 55) +A Z: anglicize / B: anglicise +A Z: anglicized / B: anglicised +A Z: anglicizing / B: anglicising +A Z: anglicizes / B: anglicises + +# angrecum (level 95) +A: angrecum / B: angraecum + +# angularization (level 95) +A Z: angularization / B: angularisation +A Z: angularizations / B: angularisations +A Z: angularization's / B: angularisation's + +# angularize (level 95) +A Z: angularize / B: angularise +A Z: angularizes / B: angularises + +# anhematopoiesis (level 95) +A Dv: anhematopoiesis / B D: anhaematopoiesis +A Dv: anhematopoiesis's / B D: anhaematopoiesis's + +# anhematosis (level 95) +A Dv: anhematosis / B D: anhaematosis + +# anhemolytic (level 95) +A Dv: anhemolytic / B D: anhaemolytic + +# anhydremia (level 95) +A Dv: anhydremia / B D: anhydraemia + +# anhydremic (level 95) +A Dv: anhydremic / B D: anhydraemic + +# anhydridization (level 95) +A Z: anhydridization / B: anhydridisation +A Z: anhydridizations / B: anhydridisations +A Z: anhydridization's / B: anhydridisation's + +# anhydridize (level 95) +A Z: anhydridize / B: anhydridise +A Z: anhydridizes / B: anhydridises + +# animalization (level 80) +A Z: animalization / B: animalisation +A Z: animalizations / B: animalisations +A Z: animalization's / B: animalisation's + +# animalize (level 70) +A Z: animalize / B: animalise +A Z: animalized / B: animalised +A Z: animalizing / B: animalising +A Z: animalizes / B: animalises + +# animized (level 95) +A Z: animized / B: animised + +# annalize (level 80) +A Z: annalize / B: annalise +A Z: annalized / B: annalised +A Z: annalizing / B: annalising +A Z: annalizes / B: annalises + +# annualization (level 99) +A Z: annualization / B: annualisation + +# annualize (level 55) +A Z: annualize / B: annualise +A Z: annualized / B: annualised +A Z: annualizing / B: annualising +A Z: annualizes / B: annualises + +# anodization (level 80) +A Z: anodization / B: anodisation + +# anodize (level 60) +A Z: anodize / B: anodise +A Z: anodized / B: anodised +A Z: anodizing / B: anodising +A Z: anodizes / B: anodises + +# anonymize (level 80) +A Z: anonymize / B: anonymise +A Z: anonymized / B: anonymised +A Z: anonymizing / B: anonymising +A Z: anonymizes / B: anonymises + +# Anora (level 80) +A: Anora / B: Anoura +A: Anora's / B: Anoura's + +# anoxemia (level 70) +A Dv: anoxemia / B D: anoxaemia +A Dv: anoxemia's / B D: anoxaemia's + +# anoxemic (level 80) +A Dv: anoxemic / B D: anoxaemic + +# anserine (level 70) +A: anserine / B: anserinae + +# antagonizable (level 95) +A Z: antagonizable / B: antagonisable + +# antagonization (level 80) +A Z: antagonization / B: antagonisation +A Z: antagonizations / B: antagonisations +A Z: antagonization's / B: antagonisation's + +# antagonize (level 35) +A Z: antagonize / B: antagonise +A Z: antagonized / B: antagonised +A Z: antagonizing / B: antagonising +A Z: antagonizes / B: antagonises + +# antagonizer (level 95) +A Z: antagonizer / B: antagoniser +A Z: antagonizers / B: antagonisers + +# antenna (level 35) +_: antennae / _-: antennas | insect +_: antennas / _-: antennae | TV + +# anthecological (level 95) +A: anthecological / B: anthoecological + +# anthecologist (level 95) +A: anthecologist / B: anthoecologist + +# anthecology (level 95) +A: anthecology / B: anthoecology + +# anthologization (level 99) +A Z: anthologization / B: anthologisation + +# anthologize (level 50) +A Z: anthologize / B: anthologise +A Z: anthologized / B: anthologised +A Z: anthologizing / B: anthologising +A Z: anthologizes / B: anthologises + +# anthologizer (level 80) +A Z: anthologizer / B: anthologiser + +# anthracemia (level 95) +A: anthracemia / B: anthracaemia + +# anthracitization (level 95) +A Z: anthracitization / B: anthracitisation +A Z: anthracitizations / B: anthracitisations +A Z: anthracitization's / B: anthracitisation's + +# anthropomorphization (level 80) +A Z: anthropomorphization / B: anthropomorphisation +A Z: anthropomorphizations / B: anthropomorphisations +A Z: anthropomorphization's / B: anthropomorphisation's + +# anthropomorphize (level 70) +A Z: anthropomorphize / B: anthropomorphise +A Z: anthropomorphized / B: anthropomorphised +A Z: anthropomorphizing / B: anthropomorphising +A Z: anthropomorphizes / B: anthropomorphises + +# anticatalyzer (level 95) +A: anticatalyzer / B: anticatalyser +A: anticatalyzers / B: anticatalysers +A: anticatalyzer's / B: anticatalyser's + +# anticentralization (level 95) +A Z: anticentralization / B: anticentralisation +A Z: anticentralizations / B: anticentralisations +A Z: anticentralization's / B: anticentralisation's + +# anticize (level 95) +A Z: anticize / B: anticise +A Z: anticizes / B: anticises + +# antiepicenter (level 95) +A: antiepicenter / B: antiepicentre +A: antiepicenters / B: antiepicentres +A: antiepicenter's / B: antiepicentre's + +# antifertilizer (level 95) +A Z: antifertilizer / B: antifertiliser +A Z: antifertilizers / B: antifertilisers +A Z: antifertilizer's / B: antifertiliser's + +# antilabor (level 60) +A DV: antilabor / B D: antilabour +A DV: antilabors / B D: antilabours +A DV: antilabor's / B D: antilabour's + +# antilemic (level 95) +A: antilemic / B: antiloemic + +# antimedieval (level 95) +A: antimedieval / B: antimediaeval + +# antimedievalism (level 95) +A: antimedievalism / B: antimediaevalism +A: antimedievalism's / B: antimediaevalism's + +# antimedievalist (level 95) +A: antimedievalist / B: antimediaevalist +A: antimedievalist's / B: antimediaevalist's + +# antimedievally (level 95) +A: antimedievally / B: antimediaevally + +# antioxidizer (level 95) +A Z: antioxidizer / B: antioxidiser +A Z: antioxidizers / B: antioxidisers +A Z: antioxidizer's / B: antioxidiser's + +# antioxidizing (level 95) +A Z: antioxidizing / B: antioxidising +A Z: antioxidizings / B: antioxidisings +A Z: antioxidizing's / B: antioxidising's + +# antipathize (level 95) +A Z: antipathize / B: antipathise +A Z: antipathizes / B: antipathises + +# antiquarianize (level 95) +A Z: antiquarianize / B: antiquarianise +A Z: antiquarianizes / B: antiquarianises + +# antirumor (level 95) +A DV: antirumor / B D: antirumour +A DV: antirumors / B D: antirumours +A DV: antirumor's / B D: antirumour's + +# antisensitize (level 99) +A Z: antisensitize / B: antisensitise +A Z: antisensitizes / B: antisensitises + +# antisensitizer (level 95) +A Z: antisensitizer / B: antisensitiser +A Z: antisensitizers / B: antisensitisers +A Z: antisensitizer's / B: antisensitiser's + +# antisepticize (level 70) +A Z: antisepticize / B: antisepticise +A Z: antisepticized / B: antisepticised +A Z: antisepticizing / B: antisepticising +A Z: antisepticizes / B: antisepticises + +# antiseptize (level 95) +A Z: antiseptize / B: antiseptise +A Z: antiseptizes / B: antiseptises + +# antisiphon (level 95) +A: antisiphon / B: antisyphon +A: antisiphons / B: antisyphons +A: antisiphon's / B: antisyphon's + +# antithesize (level 95) +A Z: antithesize / B: antithesise +A Z: antithesizes / B: antithesises + +# anvil (level 80) +A: anviled / B: anvilled +A: anviling / B: anvilling + +# apesthesia (level 95) +A: apesthesia / B: apaesthesia + +# apesthetic (level 95) +A: apesthetic / B: apaesthetic + +# apheresis (level 70) +A Dv: apheresis / B D: aphaeresis +A Dv: aphereses / B D: aphaereses +A Dv: apheresis's / B D: aphaeresis's + +# apheretic (level 80) +A Dv: apheretic / B D: aphaeretic + +# aphetize (level 80) +A Z: aphetize / B: aphetise +A Z: aphetized / B: aphetised +A Z: aphetizing / B: aphetising +A Z: aphetizes / B: aphetises + +# aphorize (level 70) +A Z: aphorize / B: aphorise +A Z: aphorized / B: aphorised +A Z: aphorizing / B: aphorising +A Z: aphorizes / B: aphorises + +# aphorizer (level 80) +A Z: aphorizer / B: aphoriser +A Z: aphorizers / B: aphorisers +A Z: aphorizer's / B: aphoriser's + +# apnea (level 70) +A C Dv: apnea / B D: apnoea +A C Dv: apneas / B D: apnoeas +A C Dv: apnea's / B D: apnoea's + +# apneal (level 80) +A Dv: apneal / B D: apnoeal + +# apneic (level 80) +A Dv: apneic / B D: apnoeic + +# apocenter (level 95) +A: apocenter / B: apocentre + +# apogeic (level 80) +A: apogeic / B: apogaeic + +# apologize (level 10) +A Z: apologize / B: apologise +A Z: apologized / B: apologised +A Z: apologizing / B: apologising +A Z: apologizes / B: apologises + +# apologizer (level 80) +A Z: apologizer / B: apologiser +A Z: apologizers / B: apologisers +A Z: apologizer's / B: apologiser's + +# apophthegmatize (level 80) +A Z: apophthegmatize / B: apophthegmatise +A Z: apophthegmatized / B: apophthegmatised +A Z: apophthegmatizing / B: apophthegmatising +A Z: apophthegmatizes / B: apophthegmatises + +# aporrhea (level 95) +A Dv: aporrhea / B D: aporrhoea + +# apostatization (level 99) +A Z: apostatization / B: apostatisation + +# apostatize (level 60) +A Z: apostatize / B: apostatise +A Z: apostatized / B: apostatised +A Z: apostatizing / B: apostatising +A Z: apostatizes / B: apostatises + +# apostolize (level 80) +A Z: apostolize / B: apostolise +A Z: apostolized / B: apostolised +A Z: apostolizing / B: apostolising +A Z: apostolizes / B: apostolises + +# apostrophize (level 70) +A Z: apostrophize / B: apostrophise +A Z: apostrophized / B: apostrophised +A Z: apostrophizing / B: apostrophising +A Z: apostrophizes / B: apostrophises + +# apothegmatize (level 80) +A Z: apothegmatize / B: apothegmatise +A Z: apothegmatized / B: apothegmatised +A Z: apothegmatizing / B: apothegmatising +A Z: apothegmatizes / B: apothegmatises + +# apotheosize (level 50) +A Z: apotheosize / B: apotheosise +A Z: apotheosized / B: apotheosised +A Z: apotheosizing / B: apotheosising +A Z: apotheosizes / B: apotheosises + +# appall (level 20) +A C Dv: appall / B Cv D: appal +A C Dv: appalls / B Cv D: appals + +# apparel (level 35) +A: appareled / B: apparelled +A: appareling / B: apparelling + +# appendix (level 35) +_: appendices / _v: appendixes | book +_: appendixes / _v: appendices | organ +## A few sources say the usage depends on context. M-w says appendixes +## is the preferred form and does not distinguish based on context, Ox +## (all versions) say appendices is the preferred form. + +# appetize (level 35) +A Z: appetize / B: appetise +A Z: appetized / B: appetised +A Z: appetizing / B: appetising +A Z: appetizes / B: appetises + +# appetizement (level 80) +A Z: appetizement / B: appetisement +A Z: appetizements / B: appetisements +A Z: appetizement's / B: appetisement's + +# appetizer (level 35) +A Z: appetizer / B: appetiser +A Z: appetizers / B: appetisers +A Z: appetizer's / B: appetiser's + +# appetizingly (level 50) +A Z: appetizingly / B: appetisingly + +# apprizal (level 95) +A Z: apprizal / B: apprisal + +# apprizer (level 80) +A Z: apprizer / B: appriser +A Z: apprizers / B: apprisers + +# apprizings (level 80) +A Z: apprizings / B: apprisings + +# aquaculture (level 50) +_: aquaculture / _V: aquiculture +_: aquaculture's / _V: aquiculture's + +# Arabianize (level 95) +A Z: Arabianize / B: Arabianise +A Z: Arabianizes / B: Arabianises +A Z: Arabianize's / B: Arabianise's + +# Arabicize (level 80) +A Z: Arabicize / B: Arabicise +A Z: Arabicizes / B: Arabicises + +# arabization (level 80) +A Z: arabization / B: arabisation +A Z: arabizations / B: arabisations +A Z: arabization's / B: arabisation's + +# Arabize (level 80) +A Z: Arabize / B: Arabise +A Z: Arabized / B: Arabised +A Z: Arabizing / B: Arabising +A Z: Arabizes / B: Arabises +A Z: arabize / B: arabise +A Z: arabized / B: arabised +A Z: arabizing / B: arabising +A Z: arabizes / B: arabises + +# Aramean (level 80) +A Dv: Aramean / B D: Aramaean +A Dv: Arameans / B D: Aramaeans + +# arbalester (level 80) +A: arbalester / B: arbalestre + +# arbor (level 35) +A Cv: arbor / B C: arbour +A Cv: arbors / B C: arbours +A Cv: arbores / B C: arboures +A Cv: arbor's / B C: arbour's + +# arbored (level 80) +A: arbored / B: arboured + +# arborization (level 70) +A Z: arborization / B: arborisation +A Z: arborizations / B: arborisations +A Z: arborization's / B: arborisation's + +# arborize (level 80) +A Z: arborize / B: arborise +A Z: arborized / B: arborised +A Z: arborizing / B: arborising +A Z: arborizes / B: arborises + +# archaeologically (level 55) +_: archaeologically / _v: archeologically + +# archaeologist (level 35) +A B C D: archaeologist / Av Cv Dv: archeologist +A B C D: archaeologists / Av Cv Dv: archeologists +A B C D: archaeologist's / Av Cv Dv: archeologist's + +# archaeology (level 35) +A B C D: archaeology / Av Cv Dv: archeology +A B C D: archaeologies / Av Cv Dv: archeologies +A B C D: archaeology's / Av Cv Dv: archeology's + +# archaize (level 70) +A Z: archaize / B: archaise +A Z: archaized / B: archaised +A Z: archaizing / B: archaising +A Z: archaizes / B: archaises + +# archaizer (level 80) +A Z: archaizer / B: archaiser +A Z: archaizers / B: archaisers +A Z: archaizer's / B: archaiser's + +# arche (level 95) +A: arche / B: archae + +# archeal (level 80) +A Dv: archeal / B D: archaeal + +# archean (level 80) +A Dv: archean / B D: archaean + +# archeoastronomy (level 80) +A Dv: archeoastronomy / B D: archaeoastronomy +A Dv: archeoastronomies / B D: archaeoastronomies + +# archeocyte (level 95) +A Dv: archeocyte / B D: archaeocyte +A Dv: archeocyte's / B D: archaeocyte's + +# archeol (level 70) +A Dv: archeol / B D: archaeol + +# archeolithic (level 95) +A Dv: archeolithic / B D: archaeolithic + +# archeologian (level 95) +A Dv: archeologian / B D: archaeologian + +# archeologic (level 70) +A B C D: archaeologic / Av Cv Dv: archeologic + +# archeological (level 35) +A B C D: archaeological / Av Cv Dv: archeological + +# archeometry (level 80) +A Dv: archeometry / B D: archaeometry +A Dv: archeometries / B D: archaeometries + +# Archeozic (level 99) +A Dv: Archeozic / B D: Archaeozic + +# Archeozoic (level 70) +A Dv: Archeozoic / B D: Archaeozoic +A Dv: archeozoic / B D: archaeozoic + +# archetypally (level 80) +_: archetypally / _V: archetypically + +# archeus (level 95) +A Dv: archeus / B D: archaeus +A Dv: archei / B D: archaei + +# arcticize (level 95) +A Z: arcticize / B: arcticise +A Z: arcticizes / B: arcticises + +# Arctogea (level 70) +A Dv: Arctogea / B D: Arctogaea +A Dv: Arctogea's / B D: Arctogaea's + +# Arctogean (level 80) +A Dv: Arctogean / B D: Arctogaean +A Dv: Arctogean's / B D: Arctogaean's + +# Arctogeic (level 95) +A Dv: Arctogeic / B D: Arctogaeic +A Dv: Arctogeic's / B D: Arctogaeic's + +# ardor (level 35) +A Cv DV: ardor / B C D: ardour +A Cv DV: ardors / B C D: ardours +A Cv DV: ardor's / B C D: ardour's + +# arenicolor (level 95) +A DV: arenicolor / B D: arenicolour + +# areole (level 70) +A: areole / B: areolae + +# areometrical (level 80) +A Dv: areometrical / B D: araeometrical + +# areostyle (level 80) +A Dv: areostyle / B D: araeostyle +A Dv: areostyles / B D: araeostyles + +# areosystyle (level 80) +A: areosystyle / B: araeosystyle + +# Arianize (level 80) +A Z: Arianize / B: Arianise +A Z: Arianized / B: Arianised +A Z: Arianized's / B: Arianised's +A Z: Arianizing / B: Arianising +A Z: Arianizes / B: Arianises +A Z: Arianize's / B: Arianise's +A Z: Arianizing's / B: Arianising's + +# Arimathea (level 80) +A Dv: Arimathea / B D: Arimathaea +A Dv: Arimathea's / B D: Arimathaea's + +# Arimathean (level 80) +A Dv: Arimathean / B D: Arimathaean +A Dv: Arimathean's / B D: Arimathaean's + +# ariste (level 80) +A: ariste / B: aristae + +# arithmetization (level 95) +A Z: arithmetization / B: arithmetisation +A Z: arithmetizations / B: arithmetisations +A Z: arithmetization's / B: arithmetisation's + +# arithmetize (level 95) +A Z: arithmetize / B: arithmetise +A Z: arithmetizes / B: arithmetises + +# arithmetized (level 95) +A Z: arithmetized / B: arithmetised + +# armor (level 35) +A Cv DV: armor / B C D: armour +A Cv DV: armored / B C D: armoured +A Cv DV: armoring / B C D: armouring +A Cv DV: armors / B C D: armours +A Cv DV: armor's / B C D: armour's + +# armorbearer (level 80) +A Cv DV: armorbearer / B C D: armourbearer +A Cv DV: armorbearer's / B C D: armourbearer's + +# armorer (level 50) +A Cv DV: armorer / B C D: armourer +A Cv DV: armorers / B C D: armourers +A Cv DV: armorer's / B C D: armourer's + +# armoried (level 95) +A Cv DV: armoried / B C D: armouried + +# armorless (level 80) +A Cv DV: armorless / B C D: armourless + +# armory (level 35) +A Cv DV: armory / B C D: armoury +A Cv DV: armories / B C D: armouries # Ox claims "armories" is the British plural but that has got to be a mistake +A Cv DV: armory's / B C D: armoury's + +# aromatite (level 95) +A: aromatite / B: aromatitae + +# aromatization (level 80) +A Z: aromatization / B: aromatisation +A Z: aromatization's / B: aromatisation's + +# aromatize (level 70) +A Z: aromatize / B: aromatise +A Z: aromatized / B: aromatised +A Z: aromatizing / B: aromatising +A Z: aromatizes / B: aromatises + +# aromatizer (level 95) +A Z: aromatizer / B: aromatiser +A Z: aromatizer's / B: aromatiser's + +# arsenicize (level 95) +A Z: arsenicize / B: arsenicise +A Z: arsenicizes / B: arsenicises + +# Arsinoe (level 95) +A: Arsinoe / B: Arsinoae +A: Arsinoe's / B: Arsinoae's + +# arterialization (level 80) +A Z: arterialization / B: arterialisation +A Z: arterializations / B: arterialisations +A Z: arterialization's / B: arterialisation's + +# arterialize (level 70) +A Z: arterialize / B: arterialise +A Z: arterialized / B: arterialised +A Z: arterializing / B: arterialising +A Z: arterializes / B: arterialises + +# arthrempyesis (level 95) +A: arthrempyesis / B: arthroempyesis + +# artifact (level 35) +A C Dv: artifact / B Cv D: artefact +A C Dv: artifact's / B Cv D: artefact's +A C Dv: artifacts / B Cv D: artefacts + +# artificialize (level 80) +A Z: artificialize / B: artificialise +A Z: artificialized / B: artificialised +A Z: artificializing / B: artificialising +A Z: artificializes / B: artificialises + +# Aryanization (level 95) +A Z: Aryanization / B: Aryanisation + +# Aryanize (level 70) +A Z: Aryanize / B: Aryanise +A Z: Aryanized / B: Aryanised +A Z: Aryanized's / B: Aryanised's +A Z: Aryanizing / B: Aryanising +A Z: Aryanizes / B: Aryanises +A Z: Aryanizing's / B: Aryanising's + +# arytenoid (level 70) +A: arytenoid / B: arytaenoid +A: arytenoids / B: arytaenoids + +# asafetida (level 70) +A C: asafetida / B Cv: asafoetida +A C: asafetidas / B Cv: asafoetidas +A C: asafetida's / B Cv: asafoetida's + +# ascendance (level 60) +_: ascendance / _V: ascendence +_: ascendance's / _V: ascendence's + +# ascendancy (level 40) +A B C: ascendancy / AV Cv: ascendency +A B C: ascendancy's / AV Cv: ascendency's + +# ascendant (level 50) +A B C: ascendant / AV Bv: ascendent +A B C: ascendants / AV Bv: ascendents +A B C: ascendant's / AV Bv: ascendent's + +# Asclepiade (level 95) +A: Asclepiade / B: Asclepiadae +A: Asclepiade's / B: Asclepiadae's + +# Asel (level 95) +A: Asel / B: Asael +A: Asel's / B: Asael's + +# asepticize (level 80) +A Z: asepticize / B: asepticise +A Z: asepticized / B: asepticised +A Z: asepticizing / B: asepticising +A Z: asepticizes / B: asepticises + +# asexualization (level 95) +A Z: asexualization / B: asexualisation +A Z: asexualization's / B: asexualisation's + +# asexualize (level 95) +A Z: asexualize / B: asexualise + +# asexualized (level 95) +A Z: asexualized / B: asexualised + +# asexualizing (level 95) +A Z: asexualizing / B: asexualising + +# Asiaticization (level 95) +A Z: Asiaticization / B: Asiaticisation +A Z: Asiaticizations / B: Asiaticisations +A Z: Asiaticization's / B: Asiaticisation's + +# Asiaticize (level 95) +A Z: Asiaticize / B: Asiaticise +A Z: Asiaticizes / B: Asiaticises +A Z: Asiaticize's / B: Asiaticise's + +# Asmonean (level 95) +A Dv: Asmonean / B D: Asmonaean +A Dv: Asmonean's / B D: Asmonaean's + +# aspheterize (level 80) +A Z: aspheterize / B: aspheterise +A Z: aspheterized / B: aspheterised +A Z: aspheterizing / B: aspheterising +A Z: aspheterizes / B: aspheterises + +# ass (level 20) +A B: ass | :1 +A B: asses | :1 +A B: ass's | :1 +A: ass / B: arse | :2 +A: asses / B: arses | :2 +A: ass's / B: arse's | :2 + +# assafetida (level 80) +A: assafetida / B: assafoetida +A: assafetidas / B: assafoetidas + +# asshole (level 40) +A: asshole / B: arsehole +A: assholes / B: arseholes +A: asshole's / B: arsehole's + +# Assidean (level 95) +A: Assidean / B: Assidaean +A: Assidean's / B: Assidaean's + +# Assyrianize (level 95) +A Z: Assyrianize / B: Assyrianise +A Z: Assyrianizes / B: Assyrianises +A Z: Assyrianize's / B: Assyrianise's + +# Astera (level 95) +A: Astera / B: Astrea +A: Astera's / B: Astrea's +A: Astrea / B: Astraea +A: Astrea's / B: Astraea's + +# astigmatizer (level 95) +A Z: astigmatizer / B: astigmatiser +A Z: astigmatizers / B: astigmatisers +A Z: astigmatizer's / B: astigmatiser's + +# astrean (level 95) +A: astrean / B: astraean + +# astronomize (level 80) +A Z: astronomize / B: astronomise +A Z: astronomized / B: astronomised +A Z: astronomizing / B: astronomising +A Z: astronomizes / B: astronomises + +# asynchronize (level 99) +A Z: asynchronize / B: asynchronise +A Z: asynchronized / B: asynchronised +A Z: asynchronizing / B: asynchronising +A Z: asynchronizes / B: asynchronises + +# atheize (level 80) +A Z: atheize / B: atheise +A Z: atheized / B: atheised +A Z: atheizing / B: atheising +A Z: atheizes / B: atheises + +# athetize (level 80) +A Z: athetize / B: athetise +A Z: athetized / B: athetised +A Z: athetizing / B: athetising +A Z: athetizes / B: athetises + +# atmolyze (level 80) +A C: atmolyze / B: atmolyse +A C: atmolyzed / B: atmolysed +A C: atmolyzing / B: atmolysing +A C: atmolyzes / B: atmolyses + +# atomizability (level 99) +A Z: atomizability / B: atomisability + +# atomizable (level 99) +A Z: atomizable / B: atomisable + +# atomization (level 70) +A Z: atomization / B: atomisation +A Z: atomizations / B: atomisations +A Z: atomization's / B: atomisation's + +# atomize (level 60) +A Z: atomize / B: atomise +A Z: atomized / B: atomised +A Z: atomizing / B: atomising +A Z: atomizes / B: atomises + +# atomizer (level 50) +A Z: atomizer / B: atomiser +A Z: atomizers / B: atomisers +A Z: atomizer's / B: atomiser's + +# atroceruleus (level 95) +A: atroceruleus / B: atrocoeruleus + +# attemper (level 70) +A: attemper / B: attempre + +# Atticize (level 80) +A Z: Atticize / B: Atticise +A Z: Atticized / B: Atticised +A Z: Atticizing / B: Atticising +A Z: Atticizes / B: Atticises +A Z: atticize / B: atticise +A Z: atticizes / B: atticises + +# attitudinization (level 99) +A Z: attitudinization / B: attitudinisation + +# attitudinize (level 50) +A Z: attitudinize / B: attitudinise +A Z: attitudinized / B: attitudinised +A Z: attitudinizing / B: attitudinising +A Z: attitudinizes / B: attitudinises +A Z: attitudinizings / B: attitudinisings + +# attitudinizer (level 70) +A Z: attitudinizer / B: attitudiniser +A Z: attitudinizers / B: attitudinisers +A Z: attitudinizer's / B: attitudiniser's + +# aunter (level 95) +A: aunter / B: auntre + +# auntie (level 55) +A B: auntie / AV Bv: aunty +A AV B Bv: aunties +A B: auntie's / AV Bv: aunty's + +# aureole (level 50) +_: aureole / _v: aureola +_: aureole's / _v: aureola's + +# Australianize (level 95) +A Z: Australianize / B: Australianise +A Z: Australianizes / B: Australianises +A Z: Australianize's / B: Australianise's + +# Australopithecine (level 80) +A: Australopithecine / B: Australopithecinae +A: Australopithecine's / B: Australopithecinae's + +# Austrianize (level 95) +A Z: Austrianize / B: Austrianise +A Z: Austrianizes / B: Austrianises +A Z: Austrianize's / B: Austrianise's + +# autecious (level 80) +A: autecious / B: autoecious + +# auteciously (level 80) +A: auteciously / B: autoeciously + +# auteciousness (level 95) +A: auteciousness / B: autoeciousness +A: auteciousness's / B: autoeciousness's + +# autecism (level 80) +A: autecism / B: autoecism +A: autecisms / B: autoecisms +A: autecism's / B: autoecism's + +# autecy (level 95) +A: autecy / B: autoecy + +# authorizable (level 80) +A Z: authorizable / B: authorisable + +# authorization (level 20) +A Z: authorization / B: authorisation +A Z: authorizations / B: authorisations +A Z: authorization's / B: authorisation's + +# authorize (level 20) +A Z: authorize / B: authorise +A Z: authorized / B: authorised +A Z: authorizing / B: authorising +A Z: authorizes / B: authorises + +# authorizer (level 80) +A Z: authorizer / B: authoriser +A Z: authorizers / B: authorisers +A Z: authorizer's / B: authoriser's + +# autocatalyze (level 70) +A C: autocatalyze / B: autocatalyse +A C: autocatalyzed / B: autocatalysed +A C: autocatalyzing / B: autocatalysing +A C: autocatalyzes / B: autocatalyses + +# autodialer (level 95) +A: autodialer / B: autodialler + +# autoimmunization (level 80) +A Z: autoimmunization / B: autoimmunisation + +# autoionization (level 70) +A Z: autoionization / B: autoionisation +A Z: autoionization's / B: autoionisation's + +# autolyzate (level 80) +A C: autolyzate / B: autolysate +A C: autolyzates / B: autolysates + +# autolyze (level 70) +A C: autolyze / B: autolyse +A C: autolyzed / B: autolysed +A C: autolyzing / B: autolysing +A C: autolyzes / B: autolyses + +# automatization (level 70) +A Z: automatization / B: automatisation +A Z: automatizations / B: automatisations +A Z: automatization's / B: automatisation's + +# automatize (level 60) +A Z: automatize / B: automatise +A Z: automatized / B: automatised +A Z: automatizing / B: automatising +A Z: automatizes / B: automatises + +# Autonoe (level 95) +A: Autonoe / B: Autonoae +A: Autonoe's / B: Autonoae's + +# autotomize (level 70) +A Z: autotomize / B: autotomise +A Z: autotomized / B: autotomised +A Z: autotomizing / B: autotomising +A Z: autotomizes / B: autotomises + +# autotoxemia (level 80) +A: autotoxemia / B: autotoxaemia +A: autotoxemias / B: autotoxaemias +A: autotoxemia's / B: autotoxaemia's + +# avianize (level 80) +A Z: avianize / B: avianise +A Z: avianized / B: avianised +A Z: avianizing / B: avianising +A Z: avianizes / B: avianises + +# avizandum (level 80) +A Z: avizandum / B: avisandum +A Z: avizandums / B: avisandums + +# avize (level 80) +A Z: avize / B: avise +A Z: avized / B: avised +A Z: avizing / B: avising +A Z: avizes / B: avises + +# awestruck (level 50) +_: awestruck / _V: awestricken + +# AWOL (level 40) +_: AWOL / _v: awol + +# ax (level 20) +A: ax / B: axe +A: ax's / B: axe's + +# axiomatization (level 80) +A Z: axiomatization / B: axiomatisation +A Z: axiomatizations / B: axiomatisations +A Z: axiomatization's / B: axiomatisation's + +# axiomatize (level 70) +A Z: axiomatize / B: axiomatise +A Z: axiomatized / B: axiomatised +A Z: axiomatizing / B: axiomatising +A Z: axiomatizes / B: axiomatises + +# aye (level 35) +_: aye / _V: ay +_: aye's / _V: ay's + +# azotemia (level 70) +A: azotemia / B: azotaemia + +# azotization (level 99) +A Z: azotization / B: azotisation + +# azotize (level 70) +A Z: azotize / B: azotise +A Z: azotized / B: azotised +A Z: azotizing / B: azotising +A Z: azotizes / B: azotises + +# azotorrhea (level 95) +A: azotorrhea / B: azotorrhoea + +# Babelization (level 95) +A Z: Babelization / B: Babelisation +A Z: Babelization's / B: Babelisation's + +# Babelize (level 95) +A Z: Babelize / B: Babelise +A Z: Babelize's / B: Babelise's + +# Babelized (level 95) +A Z: Babelized / B: Babelised +A Z: Babelized's / B: Babelised's + +# Babelizing (level 95) +A Z: Babelizing / B: Babelising +A Z: Babelizing's / B: Babelising's + +# Babylonize (level 95) +A Z: Babylonize / B: Babylonise +A Z: Babylonizes / B: Babylonises +A Z: Babylonize's / B: Babylonise's + +# bachelorize (level 95) +A Z: bachelorize / B: bachelorise +A Z: bachelorizes / B: bachelorises + +# bacillemia (level 80) +A Dv: bacillemia / B D: bacillaemia +A Dv: bacillemias / B D: bacillaemias + +# bacilli (level 50) +_: bacilli / _-: bacilluses + +# backpedal (level 50) +A: backpedaled / B: backpedalled +A: backpedaling / B: backpedalling + +# backward (level 10) +_: backward / _v: backwards | :1 +_: backward | :2 + +# baconize (level 95) +A Z: baconize / B: baconise +A Z: baconizes / B: baconises + +# bacteremia (level 80) +A Dv: bacteremia / B D: bacteraemia +A Dv: bacteremias / B D: bacteraemias +A Dv: bacteremia's / B D: bacteraemia's + +# bacteria (level 20) +A B: bacteria / AV: bacterias + +# bacteriemia (level 95) +A: bacteriemia / B: bacteriaemia + +# bacterize (level 80) +A Z: bacterize / B: bacterise +A Z: bacterized / B: bacterised +A Z: bacterizing / B: bacterising +A Z: bacterizes / B: bacterises + +# baddie (level 55) +_: baddie / _v: baddy +_: baddie's / _v: baddy's + +# Baer (level 95) +A: Baer / B: Bare +A: Baer's / B: Bare's + +# balk (level 35) +A BV C: balk / B: baulk +A BV C: balk's / B: baulk's +A BV C: balked / B: baulked +A BV C: balking / B: baulking +A BV C: balks / B: baulks + +# Balkanization (level 80) +A Z: Balkanization / B: Balkanisation +A Z: Balkanizations / B: Balkanisations +A Z: Balkanization's / B: Balkanisation's +A Z: balkanization / B: balkanisation +A Z: balkanizations / B: balkanisations +A Z: balkanization's / B: balkanisation's + +# Balkanize (level 70) +A Z: Balkanize / B: Balkanise +A Z: Balkanized / B: Balkanised +A Z: Balkanizing / B: Balkanising +A Z: Balkanizes / B: Balkanises +A Z: balkanize / B: balkanise +A Z: balkanized / B: balkanised +A Z: balkanizing / B: balkanising +A Z: balkanizes / B: balkanises + +# balladize (level 95) +A Z: balladize / B: balladise +A Z: balladized / B: balladised +A Z: balladizing / B: balladising +A Z: balladizes / B: balladises + +# baloney (level 35) +_: baloney / _V: boloney +_: baloney's / _V: boloney's + +# balsamize (level 95) +A Z: balsamize / B: balsamise +A Z: balsamizes / B: balsamises + +# banalization (level 80) +A Z: banalization / B: banalisation +A Z: banalizations / B: banalisations + +# banalize (level 80) +A Z: banalize / B: banalise +A Z: banalized / B: banalised +A Z: banalizing / B: banalising +A Z: banalizes / B: banalises + +# bandanna (level 35) +A B Cv: bandanna / Av Bv C: bandana +A B Cv: bandannas / Av Bv C: bandanas +A B Cv: bandanna's / Av Bv C: bandana's + +# bandoleer (level 50) +_: bandoleer / _.: bandolier +_: bandoleers / _.: bandoliers +_: bandoleer's / _.: bandolier's + +# banister (level 35) +A B: banister / AV Bv: bannister +A B: banisters / AV Bv: bannisters +A B: banister's / AV Bv: bannister's + +# banshee (level 50) +_: banshee / _-: banshie +_: banshees / _-: banshies +_: banshee's / _-: banshie's + +# bantamize (level 95) +A Z: bantamize / B: bantamise +A Z: bantamizes / B: bantamises + +# baptistery (level 50) +_: baptistery / _v: baptistry +_: baptisteries / _v: baptistries +_: baptistery's / _v: baptistry's + +# baptizable (level 95) +A Z: baptizable / B: baptisable +A Z: baptizables / B: baptisables +A Z: baptizable's / B: baptisable's + +# baptize (level 35) +A Z: baptize / B: baptise +A Z: baptized / B: baptised +A Z: baptizing / B: baptising +A Z: baptizes / B: baptises + +# baptizement (level 95) +A Z: baptizement / B: baptisement +A Z: baptizements / B: baptisements +A Z: baptizement's / B: baptisement's + +# baptizer (level 60) +A Z: baptizer / B: baptiser +A Z: baptizers / B: baptisers +A Z: baptizer's / B: baptiser's + +# barbarianize (level 95) +A Z: barbarianize / B: barbarianise +A Z: barbarianizes / B: barbarianises + +# barbarization (level 70) +A Z: barbarization / B: barbarisation +A Z: barbarizations / B: barbarisations +A Z: barbarization's / B: barbarisation's + +# barbarize (level 60) +A Z: barbarize / B: barbarise +A Z: barbarized / B: barbarised +A Z: barbarizing / B: barbarising +A Z: barbarizes / B: barbarises + +# barbecue (level 35) +A B: barbecue / AV Bv: barbeque +A B: barbecued / AV Bv: barbequed +A B: barbecuing / AV Bv: barbequing +A B: barbecues / AV Bv: barbeques +A B: barbecue's / AV Bv: barbeque's + +# barcarole (level 60) +_: barcarole / _V: barcarolle +_: barcaroles / _V: barcarolles +_: barcarole's / _V: barcarolle's + +# bark (level 20) +A B: bark | :1 +A B: barks | :1 +A B: bark's | :1 +A: bark / Av B: barque | (-) ship +A: barks / Av B: barques | (-) ship +A: bark's / Av B: barque's | (-) ship + +# baronetize (level 95) +A Z: baronetize / B: baronetise + +# baronetized (level 95) +A Z: baronetized / B: baronetised + +# baronetizing (level 95) +A Z: baronetizing / B: baronetising + +# baronize (level 95) +A Z: baronize / B: baronise +A Z: baronizes / B: baronises + +# barrel (level 35) +A: barreled / Av B: barrelled +A: barreling / Av B: barrelling + +# bartizan (level 70) +A Z: bartizan / B: bartisan +A Z: bartizans / B: bartisans + +# bartizaned (level 80) +A Z: bartizaned / B: bartisaned + +# barycenter (level 70) +A: barycenter / B: barycentre + +# bastardization (level 60) +A Z: bastardization / B: bastardisation +A Z: bastardizations / B: bastardisations +A Z: bastardization's / B: bastardisation's + +# bastardize (level 50) +A Z: bastardize / B: bastardise +A Z: bastardized / B: bastardised +A Z: bastardizing / B: bastardising +A Z: bastardizes / B: bastardises + +# bastinade (level 70) +A: bastinaded / B: bastinadoed +A: bastinades / B: bastinadoes + +# bathyscaphe (level 60) +_: bathyscaphe / _.: bathyscaph +_: bathyscaphes / _.: bathyscaphs +_: bathyscaphe's / _.: bathyscaph's + +# battleaxe (level 55) +A B: battleaxe / Av: battleax +A B: battleaxe's / Av: battleax's +A Av B: battleaxes + +# battologize (level 70) +A Z: battologize / B: battologise + +# battologized (level 95) +A Z: battologized / B: battologised + +# battologizing (level 95) +A Z: battologizing / B: battologising + +# beaverize (level 95) +A Z: beaverize / B: beaverise +A Z: beaverizes / B: beaverises + +# beclamor (level 80) +A DV: beclamor / B D: beclamour +A DV: beclamored / B D: beclamoured +A DV: beclamoring / B D: beclamouring +A DV: beclamors / B D: beclamours + +# becolor (level 95) +A DV: becolor / B D: becolour + +# becudgel (level 80) +A: becudgeled / B: becudgelled +A: becudgeling / B: becudgelling + +# bedevil (level 50) +A: bedeviled / B: bedevilled +A: bedeviling / B: bedevilling + +# bedlamize (level 95) +A Z: bedlamize / B: bedlamise +A Z: bedlamized / B: bedlamised +A Z: bedlamizing / B: bedlamising +A Z: bedlamizes / B: bedlamises + +# bedrivel (level 80) +A: bedriveled / B: bedrivelled +A: bedriveling / B: bedrivelling + +# Beera (level 95) +A: Beera / B: Berea +A: Beera's / B: Berea's + +# beeves (level 35) +_: beeves / _v: beefs | animal +_: beefs | complaint +_: beefs | + +# befavor (level 95) +A DV: befavor / B D: befavour + +# beglamor (level 80) +A DV: beglamor / B D: beglamour +A DV: beglamored / B D: beglamoured +A DV: beglamoring / B D: beglamouring +A DV: beglamors / B D: beglamours + +# behavior (level 10) +A Cv DV: behavior / B C D: behaviour +A Cv DV: behaviors / B C D: behaviours +A Cv DV: behavior's / B C D: behaviour's + +# behavioral (level 35) +A Cv DV: behavioral / B C D: behavioural +A Cv DV: behavioraler / B C D: behaviouraler +A Cv DV: behavioralest / B C D: behaviouralest + +# behaviorally (level 60) +A Cv DV: behaviorally / B C D: behaviourally + +# behaviored (level 95) +A Cv DV: behaviored / B C D: behavioured + +# behaviorism (level 55) +A Cv DV: behaviorism / B C D: behaviourism +A Cv DV: behaviorisms / B C D: behaviourisms +A Cv DV: behaviorism's / B C D: behaviourism's + +# behaviorist (level 55) +A Cv DV: behaviorist / B C D: behaviourist +A Cv DV: behaviorists / B C D: behaviourists +A Cv DV: behaviorist's / B C D: behaviourist's + +# behavioristic (level 70) +A Cv DV: behavioristic / B C D: behaviouristic +A Cv DV: behavioristicer / B C D: behaviouristicer +A Cv DV: behavioristicest / B C D: behaviouristicest +A Cv DV: behavioristics / B C D: behaviouristics + +# Behmenism (level 70) +A: Behmenism / B: Boehmenism +A: Behmenism's / B: Boehmenism's +A: behmenism / B: boehmenism + +# Behmenist (level 70) +A: Behmenist / B: Boehmenist +A: Behmenist's / B: Boehmenist's + +# Behmenite (level 95) +A: Behmenite / B: Boehmenite +A: Behmenite's / B: Boehmenite's + +# behoove (level 50) +A C: behoove / B: behove +A C: behooved / B: behoved +A C: behooving / B: behoving +A C: behooves / B: behoves +A C: behoove's / B: behove's +A C: behoovings / B: behovings +A C: behooving's / B: behoving's + +# behoovingly (level 95) +A: behoovingly / B: behovingly + +# bejewel (level 55) +A: bejeweled / B: bejewelled +A: bejeweling / B: bejewelling + +# bel (level 70) +A: bel / B: bael +A: bels / B: baels +A: bel's / B: bael's + +# belabor (level 35) +A Cv DV: belabor / B C D: belabour +A Cv DV: belabored / B C D: belaboured +A Cv DV: belaboring / B C D: belabouring +A Cv DV: belabors / B C D: belabours +A Cv DV: belabor's / B C D: belabour's + +# Belter (level 95) +A: Belter / B: Boelter +A: Belter's / B: Boelter's + +# Belus (level 80) +A: Belus / B: Boelus +A: Belus's / B: Boelus's + +# bemedaled (level 80) +A: bemedaled / B: bemedalled + +# Beria (level 50) +A: Beria / B: Baeria +A: Beria's / B: Baeria's + +# berk (level 55) +_: berk / _-: burk +_: berks / _-: burks + +# Berl (level 95) +A: Berl / B: Baerl +A: Berl's / B: Baerl's + +# Berlinize (level 95) +A Z: Berlinize / B: Berlinise +A Z: Berlinizes / B: Berlinises +A Z: Berlinize's / B: Berlinise's + +# berloque (level 80) +A: berloque / B: breloque + +# berme (level 80) +A: berme / B: breme + +# bern (level 80) +A: bern / B: bren + +# Bessemerize (level 95) +A Z: Bessemerize / B: Bessemerise +A Z: Bessemerizes / B: Bessemerises +A Z: Bessemerize's / B: Bessemerise's + +# bestialize (level 70) +A Z: bestialize / B: bestialise +A Z: bestialized / B: bestialised +A Z: bestializing / B: bestialising +A Z: bestializes / B: bestialises + +# bevel (level 40) +A Cv: beveled / B C: bevelled +A Cv: beveler / B C: beveller +A Cv: bevelers / B C: bevellers +A Cv: beveler's / B C: beveller's +A Cv: beveling / B C: bevelling +A Cv: bevelings / B C: bevellings + +# Beyer (level 50) +A: Beyer / B: Baeyer +A: Beyer's / B: Baeyer's + +# bias (level 20) +A B C: biased / Av Bv: biassed +A B C: biasing / Av Bv: biassing + +# bichromatize (level 95) +A Z: bichromatize / B: bichromatise +A Z: bichromatizes / B: bichromatises + +# bicolor (level 70) +A DV: bicolor / B D: bicolour +A DV: bicolorrer / B D: bicolourer +A DV: bicolorrest / B D: bicolourest +A DV: bicolors / B D: bicolours +A DV: bicolor's / B D: bicolour's + +# bicolored (level 80) +A DV: bicolored / B D: bicoloured +A DV: bicoloredder / B D: bicolouredder +A DV: bicoloreddest / B D: bicoloureddest + +# bicolorous (level 95) +A: bicolorous / B: bicolourous + +# bimetalist (level 80) +A: bimetalist / B: bimetallist + +# bimetalistic (level 80) +A: bimetalistic / B: bimetallistic + +# binge (level 40) +A B: bingeing / Av: binging + +# biocenology (level 80) +A Dv: biocenology / B D: biocoenology + +# biocenose (level 80) +A Dv: biocenose / B D: biocoenose +A Dv: biocenosis / B D: biocoenosis +A Dv: biocenoses / B D: biocoenoses + +# biocenotic (level 80) +A Dv: biocenotic / B D: biocoenotic + +# biographize (level 95) +A Z: biographize / B: biographise +A Z: biographizes / B: biographises + +# biologize (level 95) +A Z: biologize / B: biologise +A Z: biologizes / B: biologises + +# biosynthesized (level 99) +A Z: biosynthesized / B: biosynthesised + +# bipolarization (level 80) +A Z: bipolarization / B: bipolarisation + +# bipolarize (level 80) +A Z: bipolarize / B: bipolarise +A Z: bipolarizes / B: bipolarises + +# Birminghamize (level 80) +A Z: Birminghamize / B: Birminghamise +A Z: Birminghamizes / B: Birminghamises +A Z: Birminghamize's / B: Birminghamise's + +# bister (level 70) +A Cv: bister / B C: bistre +A Cv: bisters / B C: bistres +A Cv: bister's / B C: bistre's + +# bistered (level 80) +A: bistered / B: bistred +A: bisteredder / B: bistredder +A: bistereddest / B: bistreddest + +# bittor (level 95) +A: bittor / B: bittour +A: bittors / B: bittours + +# bituminization (level 80) +A Z: bituminization / B: bituminisation +A Z: bituminizations / B: bituminisations +A Z: bituminization's / B: bituminisation's + +# bituminize (level 70) +A Z: bituminize / B: bituminise +A Z: bituminized / B: bituminised +A Z: bituminizing / B: bituminising +A Z: bituminizes / B: bituminises + +# bize (level 70) +A Z: bize / B: bise +A Z: bize's / B: bise's + +# bizet (level 95) +A Z: bizet / B: biset + +# blaize (level 80) +A Z: blaize / B: blaise + +# blamable (level 60) +A Cv: blamable / Av B C: blameable + +# blastocele (level 80) +A: blastocele / B: blastocoele + +# blastule (level 80) +A: blastule / B: blastulae + +# blennemesis (level 95) +A: blennemesis / B: blennoemesis + +# blennorrhea (level 80) +A Dv: blennorrhea / B D: blennorrhoea + +# blond (level 35) +A Bv C: blond / Av B Cv: blonde | form generally used +A Bv C: blonds / Av B Cv: blondes | form generally used +A Bv C: blond's / Av B Cv: blonde's | form generally used +A B: blond | often masculine forms, especially in Brit. English +A B: blonds | often masculine forms, especially in Brit. English +A B: blond's | often masculine forms, especially in Brit. English +A B: blonde | often feminine forms, especially in Brit. English +A B: blondes | often feminine forms, especially in Brit. English +A B: blonde's | often feminine forms, especially in Brit. English + +# blowzy (level 50) +A Bv: blowzy / Av B: blowsy +A Bv: blowzier / Av B: blowsier +A Bv: blowziest / Av B: blowsiest + +# bluing (level 35) +_: bluing / _v: blueing +_: bluing's / _v: blueing's + +# boatswain (level 50) +_: boatswain / _v: bosun / _V: bo'sun / _V: bos'n / _V: bo's'n +_: boatswains / _v: bosuns / _V: bo's'ns / _V: bo'suns / _V: bos'ns +_: boatswain's / _v: bosun's / _V: bo'sun's / _V: bo's'n's / _V: bos'n's + +# bobbysoxer (level 60) +_: bobbysoxer / _v: bobby-soxer +_: bobbysoxers / _v: bobby-soxers +_: bobbysoxer's / _v: bobby-soxer's + +# boccie (level 60) +_: boccie / _v: bocce / _v: bocci +_: boccie's / _v: bocce's / _v: bocci's + +# Boedromius (level 95) +A: Boedromius / B: Boaedromius +A: Boedromius's / B: Boaedromius's + +# bogie (level 50) +_: bogie / _V: bogey | :1 +_: bogies / _V: bogeys | :1 +_: bogie's / _V: bogey's | :1 +_: bogey / _V: bogy / _V: bogie | :2 +_: bogeys / _V: bogies | :2 +_: bogey's / _V: bogy's / _V: bogie's | :2 + +# boled (level 95) +A: boled / B: boloed + +# Bolshevize (level 80) +A Z: Bolshevize / B: Bolshevise +A Z: Bolshevized / B: Bolshevised +A Z: Bolshevizing / B: Bolshevising +A Z: bolshevize / B: bolshevise +A Z: bolshevized / B: bolshevised +A Z: bolshevizing / B: bolshevising +A Z: bolshevizes / B: bolshevises + +# bolshie (level 55) +_: bolshie / _v: bolshy + +# bonderize (level 95) +A Z: bonderize / B: bonderise + +# bonny (level 50) +_: bonny / _V: bonnie + +# bony (level 35) +_: bony / _V: boney + +# boo-boo (level 60) +_: boo-boo / _v: booboo +_: boo-boos / _v: booboos +_: boo-boo's / _v: booboo's + +# boogeyman (level 55) +_: boogeyman / _V: boogerman +_: boogeymen / _V: boogermans +_: boogeyman's / _V: boogerman's + +# boombox (level 60) +_: boombox / _v: boom_box +_: boomboxes / _v: boom_boxes +_: boombox's / _v: boom_box's + +# bootee (level 35) +_: bootee / _v: bootie | boot +_: bootees / _v: booties | boot +_: bootee's / _v: bootie's | boot +_: booty / _V: bootie | buttocks +_ _V: booties | buttocks +_: booty's / _V: bootie's | buttocks +_: booty | plunder taken +_: booties | plunder taken +_: booty's | plunder taken + +# bor (level 70) +A: bor / B: bour + +# borage (level 70) +A: borage / B: bourage + +# borasque (level 80) +A: borasque / B: bourasque + +# bord (level 80) +A: bord / B: bourd +A: bords / B: bourds + +# borg (level 70) +A: borg / B: bourg + +# borize (level 95) +A Z: borize / B: borise +A Z: borizes / B: borises + +# borscht (level 50) +_: borscht / _v: borsch +_: borscht's / _v: borsch's + +# Boswellize (level 80) +A Z: Boswellize / B: Boswellise +A Z: Boswellized / B: Boswellised +A Z: Boswellizing / B: Boswellising +A Z: Boswellizes / B: Boswellises + +# botanize (level 70) +A Z: botanize / B: botanise +A Z: botanized / B: botanised +A Z: botanizing / B: botanising +A Z: botanizes / B: botanises + +# botanizer (level 80) +A Z: botanizer / B: botaniser +A Z: botanizer's / B: botaniser's + +# Bougainvillea (level 55) +A: Bougainvillea / B: Bougainvillaea | :upper +A: Bougainvillea's / B: Bougainvillaea's | :upper +_: bougainvillea / _V: bougainvillaea | :lower +_: bougainvilleas / _V: bougainvillaeas | :lower + +# boulder (level 35) +A B: boulder / AV: bowlder +A B: boulders / AV: bowlders +A B: boulder's / AV: bowlder's + +# boulevardize (level 95) +A Z: boulevardize / B: boulevardise +A Z: boulevardizes / B: boulevardises + +# bourbonize (level 95) +A Z: bourbonize / B: bourbonise +A Z: bourbonizes / B: bourbonises + +# bowdlerization (level 60) +A Z: bowdlerization / B: bowdlerisation +A Z: bowdlerizations / B: bowdlerisations +A Z: bowdlerization's / B: bowdlerisation's + +# bowdlerize (level 50) +A Z: bowdlerize / B: bowdlerise +A Z: bowdlerized / B: bowdlerised +A Z: bowdlerizing / B: bowdlerising +A Z: bowdlerizes / B: bowdlerises + +# bowdlerizer (level 80) +A Z: bowdlerizer / B: bowdleriser +A Z: bowdlerizers / B: bowdlerisers +A Z: bowdlerizer's / B: bowdleriser's + +# bowel (level 80) +A: boweled / B: bowelled +A: boweling / B: bowelling + +# bradypnea (level 95) +A Dv: bradypnea / B D: bradypnoea + +# breathalyze (level 55) +A C: breathalyze / B Cv: breathalyse +A C: breathalyzed / B Cv: breathalysed +A C: breathalyzing / B Cv: breathalysing +A C: breathalyzes / B Cv: breathalyses + +# breathalyzer (level 55) +A: breathalyzer / B: breathalyser +A: breathalyzer's / B: breathalyser's +A B: Breathalyzer | trademark +A: breathalyzers / B: breathalysers + +# brier (level 50) +A Bv C: brier / Av B Cv: briar +A Bv C: briers / Av B Cv: briars +A Bv C: brier's / Av B Cv: briar's + +# brimful (level 50) +_: brimful / _V: brimfull + +# brinkmanship (level 50) +_: brinkmanship / _V: brinksmanship +_: brinkmanship's / _V: brinksmanship's + +# briquette (level 50) +_: briquette / _v: briquet +_: briquettes / _v: briquets +_: briquette's / _v: briquet's + +# briza (level 95) +A Z: briza / B: brisa +A Z: briza's / B: brisa's + +# bromethylene (level 95) +A: bromethylene / B: bromoethylene + +# brominize (level 95) +A Z: brominize / B: brominise +A Z: brominizes / B: brominises + +# bromization (level 95) +A Z: bromization / B: bromisation +A Z: bromization's / B: bromisation's + +# bromize (level 80) +A Z: bromize / B: bromise +A Z: bromized / B: bromised +A Z: bromizing / B: bromising + +# bronco (level 35) +_: bronco / _V: broncho +_: bronco's / _V: broncho's +_: broncos / _V: bronchos + +# brusque (level 35) +_: brusque / _V: brusk +_: brusquer / _V: brusker +_: brusquest / _V: bruskest + +# brusquely (level 50) +_: brusquely / _V: bruskly + +# brusqueness (level 50) +_: brusqueness / _V: bruskness +_: brusquenesses / _V: brusknesses +_: brusqueness's / _V: bruskness's + +# brutalization (level 60) +A Z: brutalization / B: brutalisation +A Z: brutalizations / B: brutalisations +A Z: brutalization's / B: brutalisation's + +# brutalize (level 40) +A Z: brutalize / B: brutalise +A Z: brutalized / B: brutalised +A Z: brutalizing / B: brutalising +A Z: brutalizes / B: brutalises + +# Budenny (level 95) +A: Budenny / B: Budaenny +A: Budenny's / B: Budaenny's + +# bunco (level 60) +_: bunco / _v: bunko +_: buncos / _v: bunkos +_: bunco's / _v: bunko's +_: buncoed / _v: bunkoed +_: buncoing / _v: bunkoing + +# bunkum (level 50) +_: bunkum / _v: buncombe +_: bunkums / _v: buncombes +_: bunkum's / _v: buncombe's + +# bureaucratization (level 60) +A Z: bureaucratization / B: bureaucratisation +A Z: bureaucratizations / B: bureaucratisations +A Z: bureaucratization's / B: bureaucratisation's + +# bureaucratize (level 60) +A Z: bureaucratize / B: bureaucratise +A Z: bureaucratized / B: bureaucratised +A Z: bureaucratizing / B: bureaucratising +A Z: bureaucratizes / B: bureaucratises + +# burglarize (level 40) +A Z: burglarize / B: burglarise +A Z: burglarized / B: burglarised +A Z: burglarizing / B: burglarising +A Z: burglarizes / B: burglarises + +# burka (level 50) +A B Dv: burka / B. D: burqa / BV: burkha +A B Dv: burkas / B. D: burqas / BV: burkhas +A B Dv: burka's / B. D: burqa's / BV: burkha's + +# burnettize (level 80) +A Z: burnettize / B: burnettise +A Z: burnettized / B: burnettised +A Z: burnettizing / B: burnettising +A Z: burnettizes / B: burnettises + +# burnoose (level 50) +_: burnoose / _v: burnous +_: burnooses / _v: burnouses +_: burnoose's / _v: burnous's + +# bus (level 20) +A AV B Bv C: bus | -- to avoid confusion with buss +A B C: buses / AV B- CV: busses | +A Bv C: buses / AV B: busses | +A Bv C: busing / AV B: bussing +A Bv C: busings / AV B: bussings +A Bv C: busing's / AV B: bussing's +A Bv C: bused / AV B: bussed + +# bushel (level 35) +A: busheled / B: bushelled +A: busheling / B: bushelling +A: bushelings / B: bushellings + +# busheler (level 80) +A: busheler / B: busheller +A: bushelers / B: bushellers +A: busheler's / B: busheller's + +# bylaw (level 40) +_: bylaw / _V: byelaw +_: bylaws / _V: byelaws +_: bylaw's / _V: byelaw's + +# Byronize (level 95) +A Z: Byronize / B: Byronise +A Z: Byronizes / B: Byronises +A Z: Byronize's / B: Byronise's + +# Byzantinize (level 95) +A Z: Byzantinize / B: Byzantinise +A Z: Byzantinizes / B: Byzantinises +A Z: Byzantinize's / B: Byzantinise's + +# cabby (level 40) +_: cabby / _.: cabbie +_: cabby's / _.: cabbie's +_ _.: cabbies + +# cacesthesia (level 95) +A Dv: cacesthesia / B D: cacaesthesia + +# cachemia (level 95) +A Dv: cachemia / B D: cachaemia + +# cachemic (level 95) +A Dv: cachemic / B D: cachaemic + +# cacodemon (level 70) +A Dv: cacodemon / B D: cacodaemon +A Dv: cacodemons / B D: cacodaemons + +# cacodemoniac (level 95) +A Dv: cacodemoniac / B D: cacodaemoniac + +# cacodemonial (level 95) +A Dv: cacodemonial / B D: cacodaemonial + +# cacodemonic (level 80) +A Dv: cacodemonic / B D: cacodaemonic + +# cacoethes (level 70) +A Dv: cacoethes / B D: cacoaethes +A Dv: cacoethes's / B D: cacoaethes's + +# cadaster (level 70) +A: cadaster / B: cadastre +A: cadasters / B: cadastres +A: cadaster's / B: cadastre's + +# cadaverize (level 95) +A Z: cadaverize / B: cadaverise +A Z: cadaverizes / B: cadaverises + +# cadmiumize (level 95) +A Z: cadmiumize / B: cadmiumise +A Z: cadmiumizes / B: cadmiumises + +# Caesarize (level 95) +A Z: Caesarize / B: Caesarise +A Z: Caesarizes / B: Caesarises +A Z: Caesarize's / B: Caesarise's + +# caffer (level 95) +A: caffer / B: caffre + +# caftan (level 50) +A Bv C: caftan / AV B Cv: kaftan +A Bv C: caftans / AV B Cv: kaftans +A Bv C: caftan's / AV B Cv: kaftan's + +# cagey (level 35) +A B: cagey / AV Bv: cagy + +# caginess (level 50) +A B: caginess / AV Bv: cageyness +A B: caginesses / AV Bv: cageynesses +A B: caginess's / AV Bv: cageyness's + +# caiman (level 55) +_: caiman / _V: cayman +_: caimans / _V: caymans +_: caiman's / _V: cayman's + +# calander (level 95) +A: calander / B: calandre + +# calcemia (level 95) +A Dv: calcemia / B D: calcaemia + +# calendarization (level 80) +A Z: calendarization / B: calendarisation +A Z: calendarizations / B: calendarisations + +# calendarize (level 80) +A Z: calendarize / B: calendarise +A Z: calendarized / B: calendarised +A Z: calendarizing / B: calendarising +A Z: calendarizes / B: calendarises + +# Calender (level 95) +A: Calender / B: Calendre +A: Calender's / B: Calendre's + +# caliber (level 35) +A: caliber / B: calibre +A: calibers / B: calibres +A: caliber's / B: calibre's + +# caliper (level 50) +A B: caliper / Bv: calliper +A B: calipered / Bv: callipered +A B: calipering / Bv: callipering +A B: calipers / Bv: callipers +A B: caliper's / Bv: calliper's +A B: calipers's / Bv: callipers's | (-) + +# caliph (level 50) +_: caliph / _V: calif / _-: khalif +_: caliph's / _V: calif's / _-: khalif's +_: caliphes / _V: califs / _-: khalifs + +# calisthenics (level 50) +A C: calisthenics / B Cv: callisthenics + +# calk (level 35) +A: calk / Av B: caulk | :1 +A: calked / Av B: caulked | :1 +A: calking / Av B: caulking | :1 +A: calks / Av B: caulks | :1 +A: calk's / Av B: caulk's | :1 +A B: caulk / Av: calk | :2 +A B: caulked / Av: calked | :2 +A B: caulking / Av: calking | :2 +A B: caulks / Av: calks | :2 +A B: caulk / Av: calk / AV1 Bv: caulking / AV2: calking | :3 +A B: caulks / Av: calks / AV1 Bv: caulkings / AV2: calkings | :3 +A B: caulk's / Av: calk's / AV1 Bv: caulking's / AV2: calking's | :3 + +# Callirrhoe (level 95) +A: Callirrhoe / B: Callirrhoae +A: Callirrhoe's / B: Callirrhoae's + +# calodemon (level 95) +A: calodemon / B: calodaemon + +# Calvinize (level 95) +A Z: Calvinize / B: Calvinise +A Z: Calvinizes / B: Calvinises +A Z: Calvinize's / B: Calvinise's + +# camelhair (level 60) +_: camelhair | camel hair (camel's hair) + +# camisades (level 80) +A: camisades / B: camisadoes + +# camize (level 70) +A Z: camize / B: camise + +# Canadianization (level 95) +A Z: Canadianization / B: Canadianisation +A Z: Canadianizations / B: Canadianisations +A Z: Canadianization's / B: Canadianisation's + +# Canadianize (level 95) +A Z: Canadianize / B: Canadianise +A Z: Canadianizes / B: Canadianises +A Z: Canadianize's / B: Canadianise's + +# canal (level 80) +A: canaled / B: canalled +A: canaling / B: canalling + +# canaler (level 80) +A: canaler / B: canaller +A: canalers / B: canallers + +# canalization (level 55) +A Z: canalization / B: canalisation +A Z: canalizations / B: canalisations +A Z: canalization's / B: canalisation's + +# canalize (level 55) +A Z: canalize / B: canalise +A Z: canalized / B: canalised +A Z: canalizing / B: canalising +A Z: canalizes / B: canalises + +# Cananean (level 95) +A: Cananean / B: Cananaean +A: Cananean's / B: Cananaean's + +# cancel (level 20) +A: canceled / Av B: cancelled +A: canceling / Av B: cancelling + +# cancelable (level 70) +A: cancelable / Av B: cancellable + +# cancelate (level 70) +A: cancelate / Av B: cancellate + +# cancelated (level 80) +A: cancelated / Av B: cancellated + +# canceler (level 60) +A: canceler / B: canceller +A: cancelers / B: cancellers +A: canceler's / B: canceller's + +# cancellation (level 35) +A B: cancellation / AV: cancelation + +# cancelous (level 80) +A: cancelous / B: cancellous + +# candor (level 35) +A Cv DV: candor / B C D: candour +A Cv DV: candors / B C D: candours +A Cv DV: candor's / B C D: candour's + +# canephore (level 80) +A: canephore / B: canephorae +A: canephore / B: canephoroe + +# canisterization (level 80) +A Z: canisterization / B: canisterisation +A Z: canisterizations / B: canisterisations + +# canisterize (level 80) +A Z: canisterize / B: canisterise +A Z: canisterized / B: canisterised +A Z: canisterizing / B: canisterising +A Z: canisterizes / B: canisterises + +# cannibalization (level 60) +A Z: cannibalization / B: cannibalisation +A Z: cannibalizations / B: cannibalisations +A Z: cannibalization's / B: cannibalisation's + +# cannibalize (level 50) +A Z: cannibalize / B: cannibalise +A Z: cannibalized / B: cannibalised +A Z: cannibalizing / B: cannibalising +A Z: cannibalizes / B: cannibalises + +# canonicalization (level 95) +A Z: canonicalization / B: canonicalisation + +# canonicalize (level 95) +A Z: canonicalize / B: canonicalise +A Z: canonicalized / B: canonicalised +A Z: canonicalizing / B: canonicalising +A Z: canonicalizes / B: canonicalises + +# canonization (level 50) +A Z: canonization / B: canonisation +A Z: canonizations / B: canonisations +A Z: canonization's / B: canonisation's + +# canonize (level 50) +A Z: canonize / B: canonise +A Z: canonized / B: canonised +A Z: canonizing / B: canonising +A Z: canonizes / B: canonises + +# canonizer (level 80) +A Z: canonizer / B: canoniser +A Z: canonizers / B: canonisers +A Z: canonizer's / B: canoniser's + +# cantaloupe (level 35) +A B C: cantaloupe / AV Cv: cantaloup +A B C: cantaloupes / AV Cv: cantaloups +A B C: cantaloupe's / AV Cv: cantaloup's + +# cantonization (level 80) +A Z: cantonization / B: cantonisation +A Z: cantonizations / B: cantonisations + +# cantonize (level 80) +A Z: cantonize / B: cantonise +A Z: cantonized / B: cantonised +A Z: cantonizing / B: cantonising +A Z: cantonizes / B: cantonises + +# capitalizable (level 80) +A Z: capitalizable / B: capitalisable +A Z: capitalizabler / B: capitalisabler +A Z: capitalizables / B: capitalisables +A Z: capitalizablest / B: capitalisablest +A Z: capitalizable's / B: capitalisable's + +# capitalization (level 35) +A Z: capitalization / B: capitalisation +A Z: capitalizations / B: capitalisations +A Z: capitalization's / B: capitalisation's + +# capitalize (level 35) +A Z: capitalize / B: capitalise +A Z: capitalized / B: capitalised +A Z: capitalizing / B: capitalising +A Z: capitalizes / B: capitalises + +# capitalizer (level 95) +A Z: capitalizer / B: capitaliser +A Z: capitalizers / B: capitalisers +A Z: capitalizer's / B: capitaliser's + +# Caponization (level 95) +A Z: Caponization / B: Caponisation +A Z: caponization / B: caponisation +A Z: caponization's / B: caponisation's + +# caponize (level 70) +A Z: caponize / B: caponise +A Z: caponized / B: caponised +A Z: caponizing / B: caponising +A Z: caponizes / B: caponises + +# caponizer (level 95) +A Z: caponizer / B: caponiser +A Z: caponizer's / B: caponiser's + +# capsulization (level 99) +A Z: capsulization / B: capsulisation + +# capsulize (level 60) +A Z: capsulize / B: capsulise +A Z: capsulized / B: capsulised +A Z: capsulizing / B: capsulising +A Z: capsulizes / B: capsulises + +# caracol (level 70) +A: caracoled / B: caracolled +A: caracoling / B: caracolling + +# caramelization (level 70) +A Z: caramelization / B: caramelisation +A Z: caramelizations / B: caramelisations +A Z: caramelization's / B: caramelisation's + +# caramelize (level 55) +A Z: caramelize / B: caramelise +A Z: caramelized / B: caramelised +A Z: caramelizing / B: caramelising +A Z: caramelizes / B: caramelises + +# caravansary (level 60) +_: caravansary / _v: caravanserai +_: caravansaries / _v: caravansarais / _v: caravansarai +_: caravansary's / _v: caravanserai's + +# carbolization (level 99) +A Z: carbolization / B: carbolisation + +# carbolize (level 70) +A Z: carbolize / B: carbolise +A Z: carbolized / B: carbolised +A Z: carbolizing / B: carbolising +A Z: carbolizes / B: carbolises + +# carbonades (level 70) +A: carbonades / B: carbonadoes + +# carbonatization (level 95) +A Z: carbonatization / B: carbonatisation +A Z: carbonatizations / B: carbonatisations +A Z: carbonatization's / B: carbonatisation's + +# carbonizable (level 95) +A Z: carbonizable / B: carbonisable +A Z: carbonizabler / B: carbonisabler +A Z: carbonizables / B: carbonisables +A Z: carbonizablest / B: carbonisablest +A Z: carbonizable's / B: carbonisable's + +# carbonization (level 70) +A Z: carbonization / B: carbonisation +A Z: carbonizations / B: carbonisations +A Z: carbonization's / B: carbonisation's + +# carbonize (level 55) +A Z: carbonize / B: carbonise +A Z: carbonized / B: carbonised +A Z: carbonizing / B: carbonising +A Z: carbonizes / B: carbonises + +# carbonizer (level 80) +A Z: carbonizer / B: carboniser +A Z: carbonizers / B: carbonisers +A Z: carbonizer's / B: carboniser's + +# carburetor (level 35) +A: carburetor / B D: carburettor / Bv DV: carburetter +A: carburetors / B D: carburettors / Bv DV: carburetters +A: carburetor's / B D: carburettor's / Bv DV: carburetter's + +# carburization (level 70) +A Z: carburization / B: carburisation +A Z: carburizations / B: carburisations +A Z: carburization's / B: carburisation's + +# carburize (level 70) +A Z: carburize / B: carburise +A Z: carburized / B: carburised +A Z: carburizing / B: carburising +A Z: carburizes / B: carburises + +# carburizer (level 95) +A Z: carburizer / B: carburiser +A Z: carburizer's / B: carburiser's + +# cardie (level 55) +A: cardie / B: cardiae + +# cardueline (level 95) +A: cardueline / B: carduelinae + +# carnalize (level 80) +A Z: carnalize / B: carnalise +A Z: carnalized / B: carnalised +A Z: carnalizing / B: carnalising +A Z: carnalizes / B: carnalises + +# carny (level 60) +_: carny / _v1: carney / _v2: carnie +_: carnies / _v1 _v2: carneys +_: carny's / _v1: carney's / _v2: carnie's + +# carol (level 35) +A: caroled / B: carolled +A: caroling / B: carolling + +# caroler (level 50) +A: caroler / B: caroller +A: carolers / B: carollers +A: caroler's / B: caroller's + +# carotinemia (level 95) +A Dv: carotinemia / B D: carotinaemia + +# carousel (level 40) +_: carousel / _V: carrousel +_: carousels / _V: carrousels +_: carousel's / _V: carrousel's + +# cartelization (level 70) +A Z: cartelization / B: cartelisation +A Z: cartelizations / B: cartelisations +A Z: cartelization's / B: cartelisation's + +# cartelize (level 70) +A Z: cartelize / B: cartelise +A Z: cartelized / B: cartelised +A Z: cartelizing / B: cartelising +A Z: cartelizes / B: cartelises + +# casino (level 35) +_: casino | :1 +_: casinos | :1 +_: casino's | :1 +_: casino / _V: cassino | card game +_: casinos / _V: cassinos | card game +_: casino's / _V: cassino's | card game + +# caster (level 35) +A B: caster / Av Bv: castor | :1 +A B: casters / Av Bv: castors | :1 +A B: caster's / Av Bv: castor's | :1 +A Bv C: caster / Av B Cv: castor | :2 +A Bv C: casters / Av B Cv: castors | :2 +A Bv C: caster's / Av B Cv: castor's | :2 +A B: caster | :3 +A B: casters | :3 +A B: caster's | :3 +A B: castor | :4 +A B: castors | :4 +A B: castor's | :4 + +# castorized (level 95) +A Z: castorized / B: castorised +A Z: castorizeds / B: castoriseds +A Z: castorized's / B: castorised's + +# casualization (level 80) +A Z: casualization / B: casualisation +A Z: casualizations / B: casualisations + +# casualize (level 80) +A Z: casualize / B: casualise +A Z: casualized / B: casualised +A Z: casualizing / B: casualising +A Z: casualizes / B: casualises + +# catabolize (level 80) +A Z: catabolize / B: catabolise + +# catalog (level 10) +A: catalog / Av B: catalogue +A: cataloged / Av B: catalogued +A: cataloging / Av B: cataloguing +A: catalogs / Av B: catalogues +A: catalog's / Av B: catalogue's + +# cataloger (level 50) +A: cataloger / B: cataloguer +A: catalogers / B: cataloguers +A: cataloger's / B: cataloguer's + +# cataloguize (level 80) +A Z: cataloguize / B: cataloguise +A Z: cataloguized / B: cataloguised +A Z: cataloguizing / B: cataloguising +A Z: cataloguizes / B: cataloguises + +# catalyze (level 50) +A C: catalyze / B Cv: catalyse +A C: catalyzed / B Cv: catalysed +A C: catalyzing / B Cv: catalysing +A C: catalyzes / B Cv: catalyses +A B: catalyses | [catalysis] + +# catalyzer (level 70) +A: catalyzer / B: catalyser +A: catalyzers / B: catalysers +A: catalyzer's / B: catalyser's + +# catechizable (level 95) +A Z: catechizable / B: catechisable +A Z: catechizabler / B: catechisabler +A Z: catechizables / B: catechisables +A Z: catechizablest / B: catechisablest +A Z: catechizable's / B: catechisable's + +# catechization (level 80) +A Z: catechization / B: catechisation +A Z: catechizations / B: catechisations +A Z: catechization's / B: catechisation's + +# catechize (level 50) +A Z: catechize / B: catechise +A Z: catechized / B: catechised +A Z: catechizing / B: catechising +A Z: catechizes / B: catechises +A Z: catechizings / B: catechisings + +# catechizer (level 70) +A Z: catechizer / B: catechiser +A Z: catechizers / B: catechisers +A Z: catechizer's / B: catechiser's + +# categorization (level 50) +A Z: categorization / B: categorisation +A Z: categorizations / B: categorisations +A Z: categorization's / B: categorisation's + +# categorize (level 35) +A Z: categorize / B: categorise +A Z: categorized / B: categorised +A Z: categorizing / B: categorising +A Z: categorizes / B: categorises + +# categorizer (level 80) +A Z: categorizer / B: categoriser +A Z: categorizers / B: categorisers + +# catharize (level 80) +A Z: catharize / B: catharise +A Z: catharized / B: catharised +A Z: catharizing / B: catharising +A Z: catharizes / B: catharises + +# catheterization (level 80) +A Z: catheterization / B: catheterisation +A Z: catheterizations / B: catheterisations +A Z: catheterization's / B: catheterisation's + +# catheterize (level 60) +A Z: catheterize / B: catheterise +A Z: catheterized / B: catheterised +A Z: catheterizing / B: catheterising +A Z: catheterizes / B: catheterises + +# Catholicization (level 80) +A Z: Catholicization / B: Catholicisation +A Z: catholicization / B: catholicisation +A Z: catholicizations / B: catholicisations +A Z: catholicization's / B: catholicisation's + +# Catholicized (level 70) +A Z: Catholicized / B: Catholicised +A Z: Catholicizing / B: Catholicising +A Z: catholicize / B: catholicise +A Z: catholicized / B: catholicised +A Z: catholicizing / B: catholicising +A Z: catholicizes / B: catholicises + +# catholicizer (level 95) +A Z: catholicizer / B: catholiciser +A Z: catholicizers / B: catholicisers +A Z: catholicizer's / B: catholiciser's + +# cauldron (level 50) +A B C: cauldron / A. Bv: caldron +A B C: cauldrons / A. Bv: caldrons +A B C: cauldron's / A. Bv: caldron's + +# causticization (level 95) +A Z: causticization / B: causticisation +A Z: causticizations / B: causticisations +A Z: causticization's / B: causticisation's + +# causticize (level 95) +A Z: causticize / B: causticise +A Z: causticizes / B: causticises + +# causticizer (level 95) +A Z: causticizer / B: causticiser +A Z: causticizers / B: causticisers + +# cauterization (level 60) +A Z: cauterization / B: cauterisation +A Z: cauterizations / B: cauterisations +A Z: cauterization's / B: cauterisation's + +# cauterize (level 50) +A Z: cauterize / B: cauterise +A Z: cauterized / B: cauterised +A Z: cauterizing / B: cauterising +A Z: cauterizes / B: cauterises + +# caviar (level 35) +A B C: caviar / AV Bv: caviare +A B C: caviars / AV Bv: caviares +A B C: caviar's / AV Bv: caviare's + +# cavil (level 50) +A Cv: caviled / B C: cavilled +A Cv: caviling / B C: cavilling +A Cv: cavilings / B C: cavillings + +# cavilation (level 80) +A: cavilation / B: cavillation + +# caviler (level 60) +A: caviler / B: caviller +A: cavilers / B: cavillers +A: caviler's / B: caviller's + +# cecally (level 70) +A Dv: cecally / B D: caecally + +# cecitis (level 80) +A Dv: cecitis / B D: caecitis +A Dv: cecitises / B D: caecitises + +# cecity (level 70) +A Dv: cecity / B D: caecity + +# cecostomy (level 95) +A Dv: cecostomy / B D: caecostomy + +# cecotomy (level 95) +A Dv: cecotomy / B D: caecotomy + +# Celastraceae (level 95) +A: Celastraceae / B: Coelastraceae +A: Celastraceae's / B: Coelastraceae's + +# celastraceous (level 95) +A: celastraceous / B: coelastraceous + +# celestialize (level 95) +A Z: celestialize / B: celestialise +A Z: celestializes / B: celestialises + +# celestine (level 80) +A: celestine / B: coelestine + +# celiac (level 70) +A Dv: celiac / B D: coeliac +A Dv: celiacs / B D: coeliacs + +# celialgia (level 95) +A Dv: celialgia / B D: coelialgia + +# celiomyalgia (level 95) +A Dv: celiomyalgia / B D: coeliomyalgia + +# celiorrhea (level 95) +A Dv: celiorrhea / B D: coeliorrhea + +# celioscopy (level 95) +A Dv: celioscopy / B D: coelioscopy + +# celiotomy (level 70) +A Dv: celiotomy / B D: coeliotomy + +# celom (level 70) +A Cv Dv: celom / B Bv C D: coelom +A Cv Dv: celoms / B C D: coeloms / Bv: coelomata +A Cv Dv: celom's / B Bv C D: coelom's + +# celoma (level 80) +A Dv: celoma / B D: coeloma +A Dv: celomata / B D: coelomata + +# celoscope (level 95) +A Dv: celoscope / B D: coeloscope +A Dv: celoscope's / B D: coeloscope's + +# Celticize (level 95) +A Z: Celticize / B: Celticise +A Z: Celticizes / B: Celticises +A Z: Celticize's / B: Celticise's + +# cenacle (level 70) +A Dv: cenacle / B D: coenacle +A Dv: cenacle's / B D: coenacle's + +# cenaculum (level 95) +A Dv: cenaculum / B D: coenaculum + +# cenesthesia (level 70) +A Dv: cenesthesia / B D: coenesthesia +A Dv: cenesthesias / B D: coenesthesias +A Dv: cenesthesia's / B D: coenesthesia's + +# cenesthesis (level 80) +A Dv: cenesthesis / B D: coenesthesis + +# Cenis (level 70) +A Dv: Cenis / B D: Caenis +A Dv: Cenis's / B D: Caenis's + +# cenobe (level 95) +A Dv: cenobe / B D: coenobe + +# cenobite (level 60) +A Bv C: cenobite / B Cv: coenobite +A Bv C: cenobites / B Cv: coenobites +A Bv C: cenobite's / B Cv: coenobite's + +# cenobitic (level 60) +A Bv C: cenobitic / B Cv: coenobitic + +# cenobitical (level 70) +A Bv C: cenobitical / B Cv: coenobitical + +# cenobitism (level 80) +A Dv: cenobitism / B D: coenobitism +A Dv: cenobitism's / B D: coenobitism's + +# cenobium (level 80) +A Dv: cenobium / B D: coenobium + +# cenoby (level 95) +A Dv: cenoby / B D: coenoby + +# cenogenetic (level 95) +A Dv: cenogenetic / B D: caenogenetic +A Dv: cenogenetic / B D: coenogenetic + +# cenogenetically (level 95) +A Dv: cenogenetically / B D: caenogenetically + +# cenosite (level 95) +A Dv: cenosite / B D: coenosite + +# cenospecies (level 80) +A Dv: cenospecies / B D: coenospecies + +# cenospecific (level 95) +A Dv: cenospecific / B D: coenospecific + +# cenospecifically (level 95) +A Dv: cenospecifically / B D: coenospecifically + +# cenozoic (level 80) +A Dv: cenozoic / B D: caenozoic + +# center (level 10) +A Cv: center / B C: centre +A Cv: centered / B C: centred +A Cv: centering / B C: centring +A Cv: center's / B C: centre's +A Cv: centerings / B C: centrings +A Cv: centering's / B C: centring's +A Cv: centers / B C: centres + +# centerable (level 95) +A: centerable / B: centreable +A: centerables / B: centreables +A: centerable's / B: centreable's + +# centerboard (level 60) +A: centerboard / B: centreboard +A: centerboards / B: centreboards +A: centerboard's / B: centreboard's + +# centerer (level 95) +A: centerer / B: centrer +A: centerers / B: centrers + +# centerfold (level 50) +A: centerfold / B: centrefold +A: centerfolds / B: centrefolds +A: centerfold's / B: centrefold's + +# centerless (level 80) +A: centerless / B: centreless +A: centerlesser / B: centrelesser +A: centerlessest / B: centrelessest + +# centerline (level 80) +A: centerline / B: centreline +A: centerlines / B: centrelines +A: centerline's / B: centreline's + +# centermost (level 95) +A: centermost / B: centremost + +# centerpiece (level 35) +A: centerpiece / B: centrepiece +A: centerpieces / B: centrepieces +A: centerpiece's / B: centrepiece's + +# Centerville (level 80) +A: Centerville / B: Centreville +A: Centerville's / B: Centreville's + +# centigram (level 50) +A B C: centigram / Bv: centigramme +A B C: centigrams / Bv: centigrammes +A B C: centigram's / Bv: centigramme's + +# centiliter (level 50) +A: centiliter / B: centilitre +A: centiliters / B: centilitres +A: centiliter's / B: centilitre's + +# centimeter (level 35) +A: centimeter / B: centimetre +A: centimeters / B: centimetres +A: centimeter's / B: centimetre's + +# centralization (level 50) +A Z: centralization / B: centralisation +A Z: centralizations / B: centralisations +A Z: centralization's / B: centralisation's + +# centralize (level 35) +A Z: centralize / B: centralise +A Z: centralized / B: centralised +A Z: centralizing / B: centralising +A Z: centralizes / B: centralises + +# centralizer (level 60) +A Z: centralizer / B: centraliser +A Z: centralizers / B: centralisers +A Z: centralizer's / B: centraliser's + +# centrifugalization (level 80) +A Z: centrifugalization / B: centrifugalisation +A Z: centrifugalizations / B: centrifugalisations +A Z: centrifugalization's / B: centrifugalisation's + +# centrifugalize (level 80) +A Z: centrifugalize / B: centrifugalise +A Z: centrifugalized / B: centrifugalised +A Z: centrifugalizing / B: centrifugalising +A Z: centrifugalizes / B: centrifugalises + +# cephalization (level 70) +A Z: cephalization / B: cephalisation +A Z: cephalizations / B: cephalisations +A Z: cephalization's / B: cephalisation's + +# cer (level 70) +A: cer / B: cre +A: cere / B: cree +A: ceres / B: crees +A: cere's / B: cree's + +# cera (level 95) +A: cera / B: crea + +# cerat (level 95) +A: cerat / B: creat + +# ceratin (level 80) +A: ceratin / B: creatin +A: ceratins / B: creatins + +# cerebralization (level 95) +A Z: cerebralization / B: cerebralisation +A Z: cerebralizations / B: cerebralisations +A Z: cerebralization's / B: cerebralisation's + +# cerebralize (level 95) +A Z: cerebralize / B: cerebralise +A Z: cerebralizes / B: cerebralises + +# ceremonialize (level 95) +A Z: ceremonialize / B: ceremonialise +A Z: ceremonializes / B: ceremonialises + +# cerolite (level 95) +A: cerolite / B: creolite + +# cerule (level 80) +A: cerule / B: caerule + +# ceruleolactite (level 95) +A: ceruleolactite / B: coeruleolactite + +# cesar (level 70) +A: cesar / B: caesar + +# cesarean (level 40) +_: cesarean / _v: caesarean / _V: caesarian / _V: cesarian +_: cesareans / _v: caesareans / _V: caesarians / _V: cesarians +_: cesarean's / _v: caesarean's / _V: caesarian's / _V: cesarian's + +# Cesaria (level 95) +A: Cesaria / B: Caesaria +A: Cesaria's / B: Caesaria's + +# cesious (level 80) +A: cesious / B: caesious + +# cesium (level 50) +A C Dv: cesium / B Cv D: caesium +A C Dv: cesiums / B Cv D: caesiums +A C Dv: cesium's / B Cv D: caesium's + +# cespitose (level 70) +A Dv: cespitose / B D: caespitose + +# cespitosely (level 95) +A Dv: cespitosely / B D: caespitosely + +# cestus (level 70) +A Dv: cestus / B D: caestus +A Dv: cestuses / B D: caestuses + +# cesural (level 70) +A Dv: cesural / B D: caesural + +# cetus (level 95) +A Dv: cetus / B D: coetus + +# chaces (level 95) +A Dv: chaces / B D: chacoes + +# chalaze (level 80) +A: chalaze / B: chalazae + +# Chaldeans (level 80) +A: Chaldeans / B: Chaldaeans + +# chameleonize (level 95) +A Z: chameleonize / B: chameleonise +A Z: chameleonizes / B: chameleonises + +# Chamizal (level 80) +A Z: Chamizal / B: Chamisal +A Z: Chamizal's / B: Chamisal's + +# chamois (level 50) +_: chamois | :1 +_: chamois / _V: shammy / _V: chammy | :2 +_: chamois's / _V: shammy's / _V: chammy's | :2 +_: chamois / _V: chamoix | :2 + +# chamomile (level 50) +_: chamomile / _v: camomile +_: chamomiles / _v: camomiles +_: chamomile's / _v: camomile's + +# championize (level 95) +A Z: championize / B: championise +A Z: championizes / B: championises + +# channel (level 35) +A: channeled / B: channelled +A: channeling / B: channelling + +# channeler (level 80) +A: channeler / B: channeller +A: channelers / B: channellers +A: channeler's / B: channeller's + +# channelization (level 60) +A Z: channelization / B: channelisation +A Z: channelizations / B: channelisations +A Z: channelization's / B: channelisation's + +# channelize (level 60) +A Z: channelize / B: channelise +A Z: channelized / B: channelised +A Z: channelizing / B: channelising +A Z: channelizes / B: channelises + +# chaperon (level 35) +A Bv: chaperon / Av B: chaperone +A Bv: chaperons / Av B: chaperones +A Bv: chaperon's / Av B: chaperone's + +# chaptalization (level 80) +A Z: chaptalization / B: chaptalisation +A Z: chaptalizations / B: chaptalisations + +# chaptalize (level 80) +A Z: chaptalize / B: chaptalise +A Z: chaptalized / B: chaptalised +A Z: chaptalizing / B: chaptalising +A Z: chaptalizes / B: chaptalises + +# characterizable (level 80) +A Z: characterizable / B: characterisable +A Z: characterizabler / B: characterisabler +A Z: characterizables / B: characterisables +A Z: characterizablest / B: characterisablest +A Z: characterizable's / B: characterisable's + +# characterization (level 35) +A Z: characterization / B: characterisation +A Z: characterizations / B: characterisations +A Z: characterization's / B: characterisation's + +# characterize (level 35) +A Z: characterize / B: characterise +A Z: characterized / B: characterised +A Z: characterizing / B: characterising +A Z: characterizes / B: characterises + +# characterizer (level 70) +A Z: characterizer / B: characteriser +A Z: characterizers / B: characterisers +A Z: characterizer's / B: characteriser's + +# charer (level 95) +A: charer / B: charre + +# chattelization (level 95) +A Z: chattelization / B: chattelisation +A Z: chattelizations / B: chattelisations +A Z: chattelization's / B: chattelisation's + +# chattelize (level 95) +A Z: chattelize / B: chattelise +A Z: chattelizes / B: chattelises + +# check (level 10) +A CV: check / B C: cheque | bank +A CV: checked / B C: chequed | bank +A CV: checking / B C: chequing | bank +A CV: checks / B C: cheques | bank +A CV: check's / B C: cheque's | bank +A C: checker / B CV: chequer | pattern +A C: checkers / B CV: chequers | pattern +A C: checker's / B CV: chequer's | pattern +A C: checkers's / B CV: chequers's | pattern +A C: checkered / B CV: chequered | pattern +A C: checkering / B CV: chequering | pattern +A B: check | verify +A B: checked | verify +A B: checker | verify +A B: check's | verify +A B: checkers | verify +A B: checker's | verify +A B: checkers's | verify +A B: checking | verify +A B: checks | verify + +# checkbook (level 40) +A: checkbook / B: chequebook +A: checkbooks / B: chequebooks +A: checkbook's / B: chequebook's + +# checkerboard (level 40) +A: checkerboard / B: chequerboard +A: checkerboards / B: chequerboards +A: checkerboard's / B: chequerboard's + +# cheerfulize (level 95) +A Z: cheerfulize / B: cheerfulise +A Z: cheerfulizes / B: cheerfulises + +# cheerly (level 70) +A: cheerly / B: cherely + +# chelicere (level 70) +A: chelicere / B: chelicerae + +# chemicalization (level 95) +A Z: chemicalization / B: chemicalisation +A Z: chemicalizations / B: chemicalisations +A Z: chemicalization's / B: chemicalisation's + +# chemicalize (level 95) +A Z: chemicalize / B: chemicalise +A Z: chemicalizes / B: chemicalises + +# chenix (level 80) +A Dv: chenix / B D: choenix +A Dv: chenixes / B D: choenixes + +# chetopod (level 70) +A: chetopod / B: chaetopod + +# chiffer (level 95) +A: chiffer / B: chiffre + +# childer (level 95) +A: childer / B: childre + +# chili (level 35) +A C: chili / AV Cv: chile / AV B: chilli +A C: chilies / AV Cv: chiles / AV: chilis / AV B: chillies +A C: chili's / AV Cv: chile's / AV B: chilli's + +# chimera (level 50) +A B: chimera / Av Bv: chimaera +A B: chimera's / Av Bv: chimaera's +A B: chimeras / Av Bv: chimaeras + +# chimerid (level 80) +A: chimerid / B: chimaerid +A: chimerids / B: chimaerids + +# chimerism (level 80) +A: chimerism / B: chimaerism +A: chimerisms / B: chimaerisms + +# chisel (level 35) +A: chiseled / Av B: chiselled +A: chiseling / Av B: chiselling + +# chiseler (level 50) +A: chiseler / Av B: chiseller +A: chiselers / Av B: chisellers +A: chiseler's / Av B: chiseller's + +# chitterlings (level 50) +_: chitterlings / _v: chitlins / _V: chitlings +_: chitterlings's / _v: chitlins's / _V: chitlings's + +# chivy (level 55) +_: chivy / _v: chivvy +_: chivied / _v: chivvied +_: chivying / _v: chivvying +_: chivies / _v: chivvies + +# chloranemia (level 95) +A Dv: chloranemia / B D: chloranaemia + +# chloremia (level 95) +A Dv: chloremia / B D: chloraemia + +# chloridize (level 80) +A Z: chloridize / B: chloridise +A Z: chloridized / B: chloridised +A Z: chloridizing / B: chloridising +A Z: chloridizes / B: chloridises + +# chlorinize (level 80) +A Z: chlorinize / B: chlorinise +A Z: chlorinized / B: chlorinised +A Z: chlorinizing / B: chlorinising +A Z: chlorinizes / B: chlorinises + +# chloritization (level 80) +A Z: chloritization / B: chloritisation +A Z: chloritizations / B: chloritisations + +# chloroanemia (level 95) +A Dv: chloroanemia / B D: chloroanaemia + +# chloroformization (level 95) +A Z: chloroformization / B: chloroformisation +A Z: chloroformizations / B: chloroformisations +A Z: chloroformization's / B: chloroformisation's + +# chloroformize (level 95) +A Z: chloroformize / B: chloroformise +A Z: chloroformizes / B: chloroformises + +# chlorophyll (level 35) +_: chlorophyll / _-: chlorophyl +_: chlorophylls / _-: chlorophyls +_: chlorophyll's / _-: chlorophyl's + +# chocoholic (level 55) +_: chocoholic / _V: chocaholic +_: chocoholics / _V: chocaholics +_: chocoholic's / _V: chocaholic's + +# chocolaty (level 60) +A Bv: chocolaty / Av B: chocolatey + +# Choephori (level 95) +A: Choephori / B: Choaephori +A: Choephori's / B: Choaephori's + +# cholemia (level 80) +A: cholemia / B: cholaemia +A: cholemias / B: cholaemias + +# cholophein (level 95) +A: cholophein / B: cholophaein + +# choosy (level 35) +_: choosy / _V: choosey + +# chorization (level 80) +A Z: chorization / B: chorisation +A Z: chorizations / B: chorisations +A Z: chorization's / B: chorisation's + +# Christianization (level 70) +A Z: Christianization / B: Christianisation +A Z: Christianizations / B: Christianisations +A Z: Christianization's / B: Christianisation's +A Z: christianization / B: christianisation +A Z: christianizations / B: christianisations + +# Christianize (level 60) +A Z: Christianize / B: Christianise +A Z: Christianized / B: Christianised +A Z: Christianizing / B: Christianising +A Z: Christianizes / B: Christianises +A Z: christianize / B: christianise +A Z: christianized / B: christianised +A Z: christianizing / B: christianising +A Z: christianizes / B: christianises + +# Christianizer (level 80) +A Z: Christianizer / B: Christianiser +A Z: Christianizers / B: Christianisers +A Z: Christianizer's / B: Christianiser's +A Z: christianizer / B: christianiser +A Z: christianizers / B: christianisers + +# chromatize (level 95) +A Z: chromatize / B: chromatise +A Z: chromatizes / B: chromatises + +# chromesthesia (level 95) +A: chromesthesia / B: chromaesthesia + +# chromicize (level 95) +A Z: chromicize / B: chromicise +A Z: chromicizes / B: chromicises + +# chromize (level 80) +A Z: chromize / B: chromise +A Z: chromized / B: chromised +A Z: chromizing / B: chromising +A Z: chromizes / B: chromises + +# chronologize (level 80) +A Z: chronologize / B: chronologise +A Z: chronologized / B: chronologised +A Z: chronologizing / B: chronologising +A Z: chronologizes / B: chronologises + +# chutzpah (level 40) +_: chutzpah / _V1: hutzpa / _V2: chutzpa / _V3: hutzpah +_: chutzpah's / _V1: hutzpa's / _V2: chutzpa's / _V3: hutzpah's +_: chutzpahes / _V1: hutzpas / _V2: chutzpas / _V3: hutzpahes + +# cicatricule (level 95) +A: cicatricule / B: cicatriculae + +# cicatrix (level 50) +A A- B Cv: cicatrix / AV Bv C: cicatrice +A AV B Bv: cicatrices / A-: cicatrixes +A A- B Cv: cicatrix's / AV Bv C: cicatrice's + +# cicatrizant (level 95) +A Z: cicatrizant / B: cicatrisant + +# cicatrizate (level 95) +A Z: cicatrizate / B: cicatrisate + +# cicatrization (level 80) +A Z: cicatrization / B: cicatrisation +A Z: cicatrizations / B: cicatrisations +A Z: cicatrization's / B: cicatrisation's + +# cicatrize (level 70) +A Z: cicatrize / B: cicatrise +A Z: cicatrized / B: cicatrised +A Z: cicatrizing / B: cicatrising +A Z: cicatrizes / B: cicatrises + +# cicatrizer (level 95) +A Z: cicatrizer / B: cicatriser +A Z: cicatrizer's / B: cicatriser's + +# Ciceronianize (level 95) +A Z: Ciceronianize / B: Ciceronianise +A Z: Ciceronianizes / B: Ciceronianises +A Z: Ciceronianize's / B: Ciceronianise's + +# cigarette (level 20) +A B: cigarette / AV: cigaret +A B: cigarettes / AV: cigarets +A B: cigarette's / AV: cigaret's + +# cimicide (level 95) +A: cimicide / B: cimicidae + +# cinchonization (level 80) +A Z: cinchonization / B: cinchonisation +A Z: cinchonizations / B: cinchonisations +A Z: cinchonization's / B: cinchonisation's + +# cinchonize (level 70) +A Z: cinchonize / B: cinchonise +A Z: cinchonized / B: cinchonised +A Z: cinchonizing / B: cinchonising +A Z: cinchonizes / B: cinchonises + +# cinematize (level 70) +A Z: cinematize / B: cinematise + +# cinter (level 95) +A: cinter / B: cintre + +# cipher (level 35) +A B: cipher / Av Bv: cypher | :1 +A B: cipher's / Av Bv: cypher's | :1 +A B: cipher | :2 +A B: cipher's | :2 + +# Circean (level 80) +A: Circean / B: Circaean + +# circularization (level 70) +A Z: circularization / B: circularisation +A Z: circularizations / B: circularisations +A Z: circularization's / B: circularisation's + +# circularize (level 50) +A Z: circularize / B: circularise +A Z: circularized / B: circularised +A Z: circularizing / B: circularising +A Z: circularizes / B: circularises + +# circularizer (level 70) +A Z: circularizer / B: circulariser +A Z: circularizers / B: circularisers +A Z: circularizer's / B: circulariser's + +# circumcenter (level 80) +A: circumcenter / B: circumcentre +A: circumcenters / B: circumcentres + +# circumesophagal (level 95) +A: circumesophagal / B: circumoesophagal + +# cithern (level 80) +A: cithern / B: cithren +A: citherns / B: cithrens + +# citizenize (level 80) +A Z: citizenize / B: citizenise +A Z: citizenized / B: citizenised +A Z: citizenizing / B: citizenising +A Z: citizenizes / B: citizenises + +# civilianization (level 80) +A Z: civilianization / B: civilianisation +A Z: civilianizations / B: civilianisations + +# civilianize (level 80) +A Z: civilianize / B: civilianise +A Z: civilianized / B: civilianised +A Z: civilianizing / B: civilianising +A Z: civilianizes / B: civilianises + +# civilizable (level 80) +A Z: civilizable / B: civilisable +A Z: civilizabler / B: civilisabler +A Z: civilizables / B: civilisables +A Z: civilizablest / B: civilisablest +A Z: civilizable's / B: civilisable's + +# civilization (level 20) +A Z: civilization / B: civilisation +A Z: civilizations / B: civilisations +A Z: civilization's / B: civilisation's + +# civilizational (level 80) +A Z: civilizational / B: civilisational +A Z: civilizationaler / B: civilisationaler +A Z: civilizationalest / B: civilisationalest +A Z: civilizationals / B: civilisationals +A Z: civilizational's / B: civilisational's + +# civilizatory (level 95) +A Z: civilizatory / B: civilisatory + +# civilize (level 20) +A Z: civilize / B: civilise +A Z: civilized / B: civilised +A Z: civilizing / B: civilising +A Z: civilizes / B: civilises + +# civilizedness (level 95) +A Z: civilizedness / B: civilisedness +A Z: civilizednesses / B: civilisednesses +A Z: civilizedness's / B: civilisedness's + +# civilizer (level 70) +A Z: civilizer / B: civiliser +A Z: civilizers / B: civilisers +A Z: civilizer's / B: civiliser's + +# civvy (level 50) +_: civvy / _V: civie +_: civvies / _V: civies +_: civvy's / _V: civie's + +# cize (level 95) +A Z: cize / B: cise + +# clamor (level 35) +A Cv DV: clamor / B C D: clamour +A Cv DV: clamored / B C D: clamoured +A Cv DV: clamoring / B C D: clamouring +A Cv DV: clamors / B C D: clamours +A Cv DV: clamor's / B C D: clamour's +A Cv DV: clamoring's / B C D: clamouring's | (-) + +# clamorer (level 80) +A Cv DV: clamorer / B C D: clamourer +A Cv DV: clamorers / B C D: clamourers +A Cv DV: clamorer's / B C D: clamourer's + +# clamorist (level 95) +A: clamorist / B: clamourist +A: clamorist's / B: clamourist's + +# clamorsome (level 95) +A Cv DV: clamorsome / B C D: clamoursome + +# clangor (level 50) +A Cv DV: clangor / B C D: clangour +A Cv DV: clangored / B C D: clangoured +A Cv DV: clangoring / B C D: clangouring +A Cv DV: clangors / B C D: clangours +A Cv DV: clangor's / B C D: clangour's + +# clares (level 70) +A: clares / B: claroes + +# clarinetist (level 50) +A C: clarinetist / Av B: clarinettist +A C: clarinetists / Av B: clarinettists +A C: clarinetist's / Av B: clarinettist's + +# classicalize (level 95) +A Z: classicalize / B: classicalise +A Z: classicalizes / B: classicalises + +# classicization (level 99) +A Z: classicization / B: classicisation + +# classicize (level 70) +A Z: classicize / B: classicise +A Z: classicized / B: classicised +A Z: classicizing / B: classicising +A Z: classicizes / B: classicises + +# clausule (level 80) +A: clausule / B: clausulae + +# clericalize (level 95) +A Z: clericalize / B: clericalise +A Z: clericalizes / B: clericalises + +# Clete (level 95) +A: Clete / B: Cloete +A: Clete's / B: Cloete's + +# climatize (level 80) +A Z: climatize / B: climatise +A Z: climatized / B: climatised +A Z: climatizing / B: climatising +A Z: climatizes / B: climatises + +# clower (level 95) +A: clower / B: clowre + +# Clytie (level 95) +A: Clytie / B: Clytiae +A: Clytie's / B: Clytiae's + +# coalize (level 80) +A Z: coalize / B: coalise +A Z: coalized / B: coalised +A Z: coalizing / B: coalising +A Z: coalizes / B: coalises + +# coalizer (level 95) +A Z: coalizer / B: coaliser +A Z: coalizers / B: coalisers + +# cocaine (level 35) +_: cocaine / _-: cocain +_: cocaine's / _-: cocain's + +# cocainization (level 80) +A Z: cocainization / B: cocainisation +A Z: cocainizations / B: cocainisations +A Z: cocainization's / B: cocainisation's + +# cocainize (level 70) +A Z: cocainize / B: cocainise +A Z: cocainized / B: cocainised +A Z: cocainizing / B: cocainising +A Z: cocainizes / B: cocainises + +# coconut (level 35) +_: coconut / _V: cocoanut +_: coconuts / _V: cocoanuts +_: coconut's / _V: cocoanut's + +# cocuiza (level 95) +A Z: cocuiza / B: cocuisa + +# Coe (level 95) +A: Coe / B: Cooe +A: Coe's / B: Cooe's +A: ce / B: coe + +# coeducationalize (level 95) +A Z: coeducationalize / B: coeducationalise +A Z: coeducationalizes / B: coeducationalises + +# coenamor (level 80) +A DV: coenamor / B D: coenamour +A DV: coenamored / B D: coenamoured +A DV: coenamoring / B D: coenamouring +A DV: coenamors / B D: coenamours + +# coenamorment (level 95) +A DV: coenamorment / B D: coenamourment + +# coequalize (level 95) +A Z: coequalize / B: coequalise +A Z: coequalizes / B: coequalises + +# cognizability (level 95) +A Z: cognizability / B: cognisability +A Z: cognizability's / B: cognisability's + +# cognizable (level 60) +A Z: cognizable / B: cognisable +A Z: cognizabler / B: cognisabler +A Z: cognizablest / B: cognisablest + +# cognizableness (level 95) +A Z: cognizableness / B: cognisableness +A Z: cognizableness's / B: cognisableness's + +# cognizably (level 80) +A Z: cognizably / B: cognisably +A Z: cognizablier / B: cognisablier +A Z: cognizabliest / B: cognisabliest + +# cognizance (level 50) +A Z: cognizance / B: cognisance +A Z: cognizances / B: cognisances +A Z: cognizance's / B: cognisance's + +# cognizant (level 50) +A Z: cognizant / B: cognisant +A Z: cognizanter / B: cognisanter +A Z: cognizantest / B: cognisantest + +# cognize (level 70) +A Z: cognize / B: cognise +A Z: cognized / B: cognised +A Z: cognizing / B: cognising +A Z: cognizes / B: cognises + +# cognizer (level 80) +A Z: cognizer / B: cogniser +A Z: cognizers / B: cognisers +A Z: cognizer's / B: cogniser's + +# colander (level 35) +_: colander / _v: cullender +_: colanders / _v: cullenders +_: colander's / _v: cullender's + +# collateralize (level 60) +A Z: collateralize / B: collateralise + +# collectibility (level 95) +_: collectibility / _v: collectability +_: collectibilities / _v: collectabilities +_: collectibility's / _v: collectability's + +# collectible (level 40) +A Bv C: collectible / Av B: collectable +A Bv C: collectibles / Av B: collectables +A Bv C: collectible's / Av B: collectable's + +# collectivization (level 55) +A Z: collectivization / B: collectivisation +A Z: collectivizations / B: collectivisations +A Z: collectivization's / B: collectivisation's + +# collectivize (level 50) +A Z: collectivize / B: collectivise +A Z: collectivized / B: collectivised +A Z: collectivizing / B: collectivising +A Z: collectivizes / B: collectivises + +# colloquialize (level 95) +A Z: colloquialize / B: colloquialise +A Z: colloquializes / B: colloquialises + +# colloquize (level 80) +A Z: colloquize / B: colloquise +A Z: colloquized / B: colloquised +A Z: colloquizing / B: colloquising +A Z: colloquizes / B: colloquises + +# colonialize (level 80) +A Z: colonialize / B: colonialise +A Z: colonialized / B: colonialised +A Z: colonializing / B: colonialising +A Z: colonializes / B: colonialises + +# colonizability (level 95) +A Z: colonizability / B: colonisability +A Z: colonizabilities / B: colonisabilities +A Z: colonizability's / B: colonisability's + +# colonizable (level 80) +A Z: colonizable / B: colonisable +A Z: colonizabler / B: colonisabler +A Z: colonizables / B: colonisables +A Z: colonizablest / B: colonisablest +A Z: colonizable's / B: colonisable's + +# colonization (level 35) +A Z: colonization / B: colonisation +A Z: colonizations / B: colonisations +A Z: colonization's / B: colonisation's + +# colonizationist (level 80) +A Z: colonizationist / B: colonisationist +A Z: colonizationists / B: colonisationists +A Z: colonizationist's / B: colonisationist's + +# colonize (level 35) +A Z: colonize / B: colonise +A Z: colonized / B: colonised +A Z: colonizing / B: colonising +A Z: colonizes / B: colonises + +# colonizer (level 50) +A Z: colonizer / B: coloniser +A Z: colonizers / B: colonisers +A Z: colonizer's / B: coloniser's + +# color (level 10) +A Cv DV: color / B C D: colour +A Cv DV: colored / B C D: coloured +A Cv DV: colored's / B C D: coloured's +A Cv DV: colorer / B C D: colourer +A Cv DV: color's / B C D: colour's +A Cv DV: coloreds / B C D: coloureds +A Cv DV: colorers / B C D: colourers +A Cv DV: colorer's / B C D: colourer's +A Cv DV: coloring / B C D: colouring +A Cv DV: colorings / B C D: colourings +A Cv DV: coloring's / B C D: colouring's +A Cv DV: colorrest / B C D: colourest +A Cv DV: colors / B C D: colours +A Cv DV: colors's / B C D: colours's | (-) + +# colorability (level 80) +A Cv DV: colorability / B C D: colourability +A Cv DV: colorabilities / B C D: colourabilities +A Cv DV: colorability's / B C D: colourability's + +# colorable (level 70) +A Cv DV: colorable / B C D: colourable +A Cv DV: colorabler / B C D: colourabler +A Cv DV: colorables / B C D: colourables +A Cv DV: colorablest / B C D: colourablest +A Cv DV: colorable's / B C D: colourable's + +# colorableness (level 80) +A Cv DV: colorableness / B C D: colourableness +A Cv DV: colorablenesses / B C D: colourablenesses +A Cv DV: colorableness's / B C D: colourableness's + +# colorably (level 80) +A Cv DV: colorably / B C D: colourably +A Cv DV: colorablier / B C D: colourablier +A Cv DV: colorablies / B C D: colourablies +A Cv DV: colorabliest / B C D: colourabliest + +# coloradan (level 95) +A: coloradan / B: colouradan +A: coloradans / B: colouradans + +# colorado (level 70) +A: colorado / B: colourado + +# coloradoite (level 95) +A: coloradoite / B: colouradoite +A: coloradoite's / B: colouradoite's + +# colorama (level 99) +A: colorama / B: colourama + +# colorant (level 55) +A Cv DV: colorant / B C D: colourant +A Cv DV: colorants / B C D: colourants +A Cv DV: colorant's / B C D: colourant's + +# colorate (level 95) +A: colorate / B: colourate + +# coloration (level 50) +A B C: coloration / B. Cv: colouration +A B C: colorations / B. Cv: colourations +A B C: coloration's / B. Cv: colouration's +## OED has coloration as the preferred spelling and discolouration as a +## variant for British English for some reason + +# colorational (level 95) +A B: colorational / Bv: colourational +A B: colorationaler / Bv: colourationaler +A B: colorationalest / Bv: colourationalest + +# colorationally (level 95) +A B: colorationally / Bv: colourationally +A B: colorationallier / Bv: colourationallier +A B: colorationalliest / Bv: colourationalliest + +# colorative (level 95) +A: colorative / B: colourative + +# colorbearer (level 95) +A Cv DV: colorbearer / B C D: colourbearer +A Cv DV: colorbearer's / B C D: colourbearer's + +# colorblind (level 40) +A Cv DV: colorblind / B C D: colourblind + +# colorblindness (level 60) +A Cv DV: colorblindness / B C D: colourblindness +A Cv DV: colorblindnesses / B C D: colourblindnesses +A Cv DV: colorblindness's / B C D: colourblindness's + +# colorbreed (level 80) +A Cv DV: colorbreed / B C D: colourbreed +A Cv DV: colorbred / B C D: colourbred +A Cv DV: colorbreeding / B C D: colourbreeding +A Cv DV: colorbreeds / B C D: colourbreeds + +# colorcast (level 70) +A Cv DV: colorcast / B C D: colourcast +A Cv DV: colorcasting / B C D: colourcasting +A Cv DV: colorcasts / B C D: colourcasts +A Cv DV: colorcast's / B C D: colourcast's + +# colorcasted (level 80) +A Cv DV: colorcasted / B C D: colourcasted + +# colorcaster (level 95) +A Cv DV: colorcaster / B C D: colourcaster +A Cv DV: colorcasters / B C D: colourcasters + +# colorectal (level 80) +A: colorectal / B: colourectal + +# colorectitis (level 95) +A: colorectitis / B: colourectitis + +# colorectostomy (level 95) +A: colorectostomy / B: colourectostomy + +# colorfast (level 50) +A Cv DV: colorfast / B C D: colourfast + +# colorfastness (level 60) +A Cv DV: colorfastness / B C D: colourfastness +A Cv DV: colorfastnesses / B C D: colourfastnesses +A Cv DV: colorfastness's / B C D: colourfastness's + +# colorful (level 35) +A Cv DV: colorful / B C D: colourful +A Cv DV: colorfuler / B C D: colourfuler +A Cv DV: colorfulest / B C D: colourfulest + +# colorfully (level 50) +A Cv DV: colorfully / B C D: colourfully +A Cv DV: colorfullier / B C D: colourfullier +A Cv DV: colorfulliest / B C D: colourfulliest + +# colorfulness (level 60) +A Cv DV: colorfulness / B C D: colourfulness +A Cv DV: colorfulnesses / B C D: colourfulnesses +A Cv DV: colorfulness's / B C D: colourfulness's + +# colorific (level 70) +A: colorific / B: colourific +A: colorifics / B: colourifics +A: colorific's / B: colourific's + +# colorimeter (level 70) +A B: colorimeter / B-: colourimeter +A B: colorimeters / B-: colourimeters +A B: colorimeter's / B-: colourimeter's + +# colorimetric (level 70) +A B: colorimetric / B-: colourimetric +A B: colorimetrics / B-: colourimetrics + +# colorimetrical (level 95) +A: colorimetrical / B: colourimetrical + +# colorimetrically (level 80) +A: colorimetrically / B: colourimetrically + +# colorimetrist (level 95) +A: colorimetrist / B: colourimetrist +A: colorimetrist's / B: colourimetrist's + +# colorimetry (level 80) +A B: colorimetry / B-: colourimetry +A B: colorimetries / B-: colourimetries + +# colorin (level 95) +A: colorin / B: colourin + +# colorism (level 80) +A: colorism / B: colourism +A: colorisms / B: colourisms + +# colorist (level 55) +A Cv: colorist / B C: colourist +A Cv: colorists / B C: colourists +A Cv: colorist's / B C: colourist's + +# coloristic (level 80) +A: coloristic / B: colouristic +A: coloristicer / B: colouristicer +A: coloristicest / B: colouristicest +A: coloristics / B: colouristics + +# coloristically (level 80) +A: coloristically / B: colouristically + +# colorization (level 55) +A: colorization / B: colourisation / Z: colourization +A: colorizations / B: colourisations / Z: colourizations +A: colorization's / B: colourisation's / Z: colourization's + +# colorize (level 55) +A: colorize / B: colourise / Z: colourize +A: colorized / B: colourised / Z: colourized +A: colorizing / B: colourising / Z: colourizing +A: colorizes / B: colourises / Z: colourizes + +# colorless (level 35) +A Cv DV: colorless / B C D: colourless +A Cv DV: colorlesser / B C D: colourlesser +A Cv DV: colorlessest / B C D: colourlessest + +# colorlessly (level 60) +A Cv DV: colorlessly / B C D: colourlessly +A Cv DV: colorlesslier / B C D: colourlesslier +A Cv DV: colorlessliest / B C D: colourlessliest + +# colorlessness (level 60) +A Cv DV: colorlessness / B C D: colourlessness +A Cv DV: colorlessnesses / B C D: colourlessnesses +A Cv DV: colorlessness's / B C D: colourlessness's + +# colormaker (level 95) +A Cv DV: colormaker / B C D: colourmaker + +# colormaking (level 95) +A Cv DV: colormaking / B C D: colourmaking + +# colorman (level 80) +A Cv DV: colorman / B C D: colourman +A Cv DV: colormen / B C D: colourmen +A Cv DV: colorman's / B C D: colourman's + +# colormap (level 99) +A Cv DV: colormap / B C D: colourmap +A Cv DV: colormaps / B C D: colourmaps +A Cv DV: colormap's / B C D: colourmap's + +# coloroto (level 95) +A: coloroto / B: colouroto + +# colorpoint (level 80) +A Cv DV: colorpoint / B C D: colourpoint +A Cv DV: colorpoints / B C D: colourpoints + +# colorrhaphy (level 95) +A: colorrhaphy / B: colourrhaphy + +# colortype (level 95) +A Cv DV: colortype / B C D: colourtype + +# colorway (level 55) +A Cv DV: colorway / B C D: colourway +A Cv DV: colorways / B C D: colourways + +# colory (level 80) +A: colory / B: coloury + +# columnization (level 95) +A Z: columnization / B: columnisation +A Z: columnizations / B: columnisations +A Z: columnization's / B: columnisation's + +# columnize (level 95) +A Z: columnize / B: columnise +A Z: columnized / B: columnised +A Z: columnizing / B: columnising +A Z: columnizes / B: columnises + +# comedia (level 95) +A: comedia / B: comoedia + +# commercialization (level 50) +A Z: commercialization / B: commercialisation +A Z: commercializations / B: commercialisations +A Z: commercialization's / B: commercialisation's + +# commercialize (level 35) +A Z: commercialize / B: commercialise +A Z: commercialized / B: commercialised +A Z: commercializing / B: commercialising +A Z: commercializes / B: commercialises + +# commonize (level 95) +A Z: commonize / B: commonise +A Z: commonizes / B: commonises + +# communalization (level 80) +A Z: communalization / B: communalisation +A Z: communalizations / B: communalisations +A Z: communalization's / B: communalisation's + +# communalize (level 70) +A Z: communalize / B: communalise +A Z: communalized / B: communalised +A Z: communalizing / B: communalising +A Z: communalizes / B: communalises + +# communalizer (level 95) +A Z: communalizer / B: communaliser +A Z: communalizers / B: communalisers +A Z: communalizer's / B: communaliser's + +# communization (level 70) +A Z: communization / B: communisation +A Z: communizations / B: communisations +A Z: communization's / B: communisation's + +# communize (level 70) +A Z: communize / B: communise +A Z: communized / B: communised +A Z: communizing / B: communising +A Z: communizes / B: communises + +# companionize (level 95) +A Z: companionize / B: companionise +A Z: companionizes / B: companionises + +# compartmentalization (level 60) +A Z: compartmentalization / B: compartmentalisation +A Z: compartmentalizations / B: compartmentalisations +A Z: compartmentalization's / B: compartmentalisation's + +# compartmentalize (level 40) +A Z: compartmentalize / B: compartmentalise +A Z: compartmentalized / B: compartmentalised +A Z: compartmentalizing / B: compartmentalising +A Z: compartmentalizes / B: compartmentalises + +# compartmentize (level 95) +A Z: compartmentize / B: compartmentise +A Z: compartmentizes / B: compartmentises + +# comper (level 80) +A: comper / B: compoer + +# complementizer (level 80) +A Z: complementizer / B: complementiser +A Z: complementizer's / B: complementiser's + +# Composite (level 70) +A: Composite / B: Compositae + +# comprehensivization (level 80) +A Z: comprehensivization / B: comprehensivisation +A Z: comprehensivizations / B: comprehensivisations + +# comprehensivize (level 80) +A Z: comprehensivize / B: comprehensivise +A Z: comprehensivized / B: comprehensivised +A Z: comprehensivizing / B: comprehensivising +A Z: comprehensivizes / B: comprehensivises + +# comprizable (level 70) +A Z: comprizable / B: comprisable + +# comprizal (level 80) +A Z: comprizal / B: comprisal +A Z: comprizal's / B: comprisal's + +# computerizable (level 80) +A Z: computerizable / B: computerisable + +# computerization (level 50) +A Z: computerization / B: computerisation +A Z: computerizations / B: computerisations +A Z: computerization's / B: computerisation's + +# computerize (level 20) +A Z: computerize / B: computerise +A Z: computerized / B: computerised +A Z: computerizing / B: computerising +A Z: computerizes / B: computerises + +# concenter (level 70) +A: concenter / B: concentre +A: concentered / B: concentred +A: concentering / B: concentring +A: concenters / B: concentres + +# conceptualization (level 50) +A Z: conceptualization / B: conceptualisation +A Z: conceptualizations / B: conceptualisations +A Z: conceptualization's / B: conceptualisation's + +# conceptualize (level 50) +A Z: conceptualize / B: conceptualise +A Z: conceptualized / B: conceptualised +A Z: conceptualizing / B: conceptualising +A Z: conceptualizes / B: conceptualises + +# conceptualizer (level 80) +A Z: conceptualizer / B: conceptualiser + +# concertist (level 80) +A: concertist / B: concretist + +# concertize (level 60) +A Z: concertize / B: concertise +A Z: concertized / B: concertised +A Z: concertizing / B: concertising +A Z: concertizes / B: concertises + +# concertizer (level 95) +A Z: concertizer / B: concertiser +A Z: concertizers / B: concertisers +A Z: concertizer's / B: concertiser's + +# conche (level 80) +A: conche / B: conchae + +# concolor (level 80) +A: concolor / B: concolour + +# concolorous (level 80) +A: concolorous / B: concolourous + +# concretization (level 80) +A Z: concretization / B: concretisation +A Z: concretizations / B: concretisations +A Z: concretization's / B: concretisation's + +# concretize (level 70) +A Z: concretize / B: concretise +A Z: concretized / B: concretised +A Z: concretizing / B: concretising +A Z: concretizes / B: concretises + +# conditionalize (level 95) +A Z: conditionalize / B: conditionalise +A Z: conditionalizes / B: conditionalises + +# coneys (level 55) +_: coneys / _v: conies +_: cony / _v: coney +_: cony's / _v: coney's + +# confederatize (level 95) +A Z: confederatize / B: confederatise +A Z: confederatizes / B: confederatises + +# congenialize (level 95) +A Z: congenialize / B: congenialise +A Z: congenializes / B: congenialises + +# conges (level 80) +A: conges / B: congoes + +# congregationalize (level 95) +A Z: congregationalize / B: congregationalise +A Z: congregationalizes / B: congregationalises + +# conjurer (level 50) +_: conjurer / _v: conjuror +_: conjurers / _v: conjurors +_: conjurer's / _v: conjuror's + +# connectable (level 60) +A B: connectable / AV: connectible + +# connection (level 10) +A B C: connection / Bv: connexion +A B C: connection's / Bv: connexion's +A B C: connections / Bv: connexions + +# connector (level 20) +A B: connector / AV: connecter +A B: connectors / AV: connecters +A B: connector's / AV: connecter's + +# conservatize (level 80) +A Z: conservatize / B: conservatise +A Z: conservatized / B: conservatised +A Z: conservatizing / B: conservatising +A Z: conservatizes / B: conservatises + +# consonantize (level 95) +A Z: consonantize / B: consonantise +A Z: consonantized / B: consonantised +A Z: consonantizing / B: consonantising +A Z: consonantizes / B: consonantises + +# constitutionalization (level 80) +A Z: constitutionalization / B: constitutionalisation +A Z: constitutionalizations / B: constitutionalisations +A Z: constitutionalization's / B: constitutionalisation's + +# constitutionalize (level 80) +A Z: constitutionalize / B: constitutionalise +A Z: constitutionalized / B: constitutionalised +A Z: constitutionalizing / B: constitutionalising +A Z: constitutionalizes / B: constitutionalises + +# containerization (level 60) +A Z: containerization / B: containerisation +A Z: containerizations / B: containerisations +A Z: containerization's / B: containerisation's + +# containerize (level 60) +A Z: containerize / B: containerise +A Z: containerized / B: containerised +A Z: containerizing / B: containerising +A Z: containerizes / B: containerises + +# contemporization (level 99) +A Z: contemporization / B: contemporisation + +# contemporize (level 70) +A Z: contemporize / B: contemporise +A Z: contemporized / B: contemporised +A Z: contemporizing / B: contemporising +A Z: contemporizes / B: contemporises + +# contextualization (level 55) +A Z: contextualization / B: contextualisation +A Z: contextualizations / B: contextualisations + +# contextualize (level 55) +A Z: contextualize / B: contextualise +A Z: contextualized / B: contextualised +A Z: contextualizing / B: contextualising +A Z: contextualizes / B: contextualises + +# Continentalize (level 95) +A Z: Continentalize / B: Continentalise +A Z: Continentalizes / B: Continentalises + +# controversialize (level 95) +A Z: controversialize / B: controversialise +A Z: controversializes / B: controversialises + +# conundrumize (level 95) +A Z: conundrumize / B: conundrumise +A Z: conundrumizes / B: conundrumises + +# convener (level 55) +_: convener / _v: convenor +_: conveners / _v: convenors +_: convener's / _v: convenor's + +# conventionalization (level 70) +A Z: conventionalization / B: conventionalisation +A Z: conventionalizations / B: conventionalisations +A Z: conventionalization's / B: conventionalisation's + +# conventionalize (level 60) +A Z: conventionalize / B: conventionalise +A Z: conventionalized / B: conventionalised +A Z: conventionalizing / B: conventionalising +A Z: conventionalizes / B: conventionalises + +# conventionize (level 95) +A Z: conventionize / B: conventionise +A Z: conventionizes / B: conventionises + +# conversationize (level 95) +A Z: conversationize / B: conversationise +A Z: conversationizes / B: conversationises + +# converter (level 20) +A B C: converter / Bv: convertor | :1 +A B C: converters / Bv: convertors | :1 +A B C: converter's / Bv: convertor's | :1 +A B C: converter / Av Bv: convertor | :2 +A B C: converters / Av Bv: convertors | :2 +A B C: converter's / Av Bv: convertor's | :2 + +# conveyor (level 50) +_: conveyor / _V: conveyer +_: conveyors / _V: conveyers +_: conveyor's / _V: conveyer's + +# conveyorize (level 80) +A Z: conveyorize / B: conveyorise +A Z: conveyorized / B: conveyorised +A Z: conveyorizing / B: conveyorising +A Z: conveyorizes / B: conveyorises + +# convivialize (level 95) +A Z: convivialize / B: convivialise +A Z: convivializes / B: convivialises + +# cookie (level 20) +A B: cookie / Av: cooky +A B: cookie's / Av: cooky's + +# copolymerization (level 80) +A Z: copolymerization / B: copolymerisation +A Z: copolymerizations / B: copolymerisations +A Z: copolymerization's / B: copolymerisation's + +# copolymerize (level 70) +A Z: copolymerize / B: copolymerise +A Z: copolymerized / B: copolymerised +A Z: copolymerizing / B: copolymerising +A Z: copolymerizes / B: copolymerises + +# copperization (level 95) +A Z: copperization / B: copperisation +A Z: copperizations / B: copperisations +A Z: copperization's / B: copperisation's + +# copperize (level 95) +A Z: copperize / B: copperise +A Z: copperizes / B: copperises + +# copremia (level 80) +A Dv: copremia / B D: copraemia + +# copremic (level 80) +A Dv: copremic / B D: copraemic + +# coraled (level 95) +A: coraled / B: coralled + +# coranto (level 70) +A: coranto / B: couranto +A: corantoes / B: courantoes +A: corantos / B: courantos + +# corbe (level 80) +A: corbe / B: courbe + +# corbed (level 95) +A: corbed / B: courbed + +# corbel (level 80) +A: corbeled / B: corbelled +A: corbeling / B: corbelling +A: corbeling's / B: corbelling's +A: corbelings / B: corbellings + +# cordialize (level 80) +A Z: cordialize / B: cordialise +A Z: cordialized / B: cordialised +A Z: cordializing / B: cordialising +A Z: cordializes / B: cordialises + +# corge (level 95) +A: corge / B: courge + +# Corinthianize (level 80) +A Z: Corinthianize / B: Corinthianise +A Z: Corinthianizes / B: Corinthianises +A Z: Corinthianize's / B: Corinthianise's +A Z: corinthianize / B: corinthianise +A Z: corinthianized / B: corinthianised +A Z: corinthianizing / B: corinthianising +A Z: corinthianizes / B: corinthianises + +# corporealization (level 95) +A Z: corporealization / B: corporealisation +A Z: corporealizations / B: corporealisations +A Z: corporealization's / B: corporealisation's + +# corporealize (level 80) +A Z: corporealize / B: corporealise +A Z: corporealized / B: corporealised +A Z: corporealizing / B: corporealising +A Z: corporealizes / B: corporealises + +# corsy (level 95) +A: corsy / B: coursy + +# cortage (level 95) +A: cortage / B: courtage + +# cortin (level 80) +A: cortin / B: courtin + +# cortine (level 80) +A: cortine / B: cortinae + +# corve (level 95) +A: corve / B: corvae + +# coryphe (level 95) +A: coryphe / B: coryphae +A: coryphes / B: coryphaes + +# cosmeticize (level 80) +A Z: cosmeticize / B: cosmeticise +A Z: cosmeticized / B: cosmeticised +A Z: cosmeticizing / B: cosmeticising +A Z: cosmeticizes / B: cosmeticises + +# cosmopolitanization (level 95) +A Z: cosmopolitanization / B: cosmopolitanisation +A Z: cosmopolitanizations / B: cosmopolitanisations +A Z: cosmopolitanization's / B: cosmopolitanisation's + +# cosmopolitanize (level 70) +A Z: cosmopolitanize / B: cosmopolitanise +A Z: cosmopolitanized / B: cosmopolitanised +A Z: cosmopolitanizing / B: cosmopolitanising +A Z: cosmopolitanizes / B: cosmopolitanises + +# cosplendor (level 95) +A DV: cosplendor / B D: cosplendour + +# coste (level 70) +A: coste / B: costae + +# costumier (level 55) +A: costumier / B: costumire + +# cottar (level 50) +_: cottar / _v: cotter | :1 +_: cottars / _v: cotters | :1 +_: cottar's / _v: cotter's | :1 +_: cotter | :2 +_: cotters | :2 +_: cotter's | :2 + +# cotte (level 80) +A: cotte / B: cottae + +# cottonization (level 95) +A Z: cottonization / B: cottonisation +A Z: cottonizations / B: cottonisations +A Z: cottonization's / B: cottonisation's + +# cottonize (level 95) +A Z: cottonize / B: cottonise +A Z: cottonizes / B: cottonises + +# cotyle (level 80) +A: cotyle / B: cotylae + +# councilor (level 35) +A: councilor / B: councillor +A: councilors / B: councillors +A: councilor's / B: councillor's + +# councilorship (level 70) +A: councilorship / B: councillorship +A: councilorships / B: councillorships +A: councilorship's / B: councillorship's + +# counsel (level 20) +A: counseled / B: counselled +A: counseling / B: counselling + +# counselee (level 80) +A: counselee / B: counsellee + +# counselor (level 35) +A Cv: counselor / B C: counsellor +A Cv: counselors / B C: counsellors +A Cv: counselor's / B C: counsellor's + +# counselorship (level 70) +A: counselorship / B: counsellorship +A: counselorships / B: counsellorships +A: counselorship's / B: counsellorship's + +# countercolored (level 95) +A DV: countercolored / B D: countercoloured + +# countor (level 95) +A: countor / B: countour + +# cozily (level 35) +A C: cozily / B: cosily + +# coziness (level 35) +A C: coziness / B: cosiness +A C: coziness's / B: cosiness's + +# cozy (level 20) +A C: cozy / B Cv: cosy +A C: cozied / B Cv: cosied +A C: cozier / B Cv: cosier +A C: coziest / B Cv: cosiest +A C: cozying / B Cv: cosying +A C: cozies / B Cv: cosies +A C: cozy's / B Cv: cosy's + +# craizey (level 95) +A Z: craizey / B: craisey + +# crambes (level 80) +A: crambes / B: cramboes + +# crawlerize (level 95) +A Z: crawlerize / B: crawlerise +A Z: crawlerizes / B: crawlerises + +# creaturize (level 95) +A Z: creaturize / B: creaturise +A Z: creaturizes / B: creaturises + +# crenel (level 70) +A Bv: creneled / B: crenelled +A Bv: creneling / B: crenelling + +# crenelate (level 55) +A Bv: crenelate / B: crenellate +A Bv: crenelated / B: crenellated +A Bv: crenelater / B: crenellater +A Bv: crenelates / B: crenellates +A Bv: crenelatest / B: crenellatest +A Bv: crenelating / B: crenellating + +# crenelation (level 60) +A Bv: crenelation / B: crenellation +A Bv: crenelations / B: crenellations +A Bv: crenelation's / B: crenellation's + +# Creolization (level 80) +A Z: Creolization / B: Creolisation +A Z: creolization / B: creolisation +A Z: creolizations / B: creolisations + +# Creolize (level 70) +A Z: Creolize / B: Creolise +A Z: Creolized / B: Creolised +A Z: Creolizing / B: Creolising +A Z: Creolizes / B: Creolises +A Z: creolize / B: creolise +A Z: creolized / B: creolised +A Z: creolizing / B: creolising +A Z: creolizes / B: creolises + +# cretinization (level 95) +A Z: cretinization / B: cretinisation +A Z: cretinizations / B: cretinisations +A Z: cretinization's / B: cretinisation's + +# cretinize (level 80) +A Z: cretinize / B: cretinise +A Z: cretinized / B: cretinised +A Z: cretinizing / B: cretinising +A Z: cretinizes / B: cretinises + +# criminalization (level 70) +A Z: criminalization / B: criminalisation +A Z: criminalizations / B: criminalisations +A Z: criminalization's / B: criminalisation's + +# criminalize (level 55) +A Z: criminalize / B: criminalise +A Z: criminalized / B: criminalised +A Z: criminalizing / B: criminalising +A Z: criminalizes / B: criminalises + +# criticizable (level 70) +A Z: criticizable / B: criticisable +A Z: criticizabler / B: criticisabler +A Z: criticizables / B: criticisables +A Z: criticizablest / B: criticisablest +A Z: criticizable's / B: criticisable's + +# criticize (level 20) +A Z: criticize / B: criticise +A Z: criticized / B: criticised +A Z: criticizing / B: criticising +A Z: criticizes / B: criticises + +# criticizer (level 60) +A Z: criticizer / B: criticiser +A Z: criticizers / B: criticisers +A Z: criticizer's / B: criticiser's + +# criticizingly (level 95) +A Z: criticizingly / B: criticisingly +A Z: criticizinglier / B: criticisinglier +A Z: criticizinglies / B: criticisinglies +A Z: criticizingliest / B: criticisingliest + +# crofterization (level 95) +A Z: crofterization / B: crofterisation +A Z: crofterizations / B: crofterisations +A Z: crofterization's / B: crofterisation's + +# crofterize (level 95) +A Z: crofterize / B: crofterise +A Z: crofterizes / B: crofterises + +# crosier (level 50) +A Bv: crosier / Av B: crozier +A Bv: crosiers / Av B: croziers +A Bv: crosier's / Av B: crozier's + +# cruel (level 35) +A Cv: crueler / B C: crueller +A Cv: cruelest / B C: cruellest + +# cruelize (level 95) +A Z: cruelize / B: cruelise +A Z: cruelizes / B: cruelises + +# cryesthesia (level 95) +A Dv: cryesthesia / B D: cryaesthesia + +# cryoanesthesia (level 95) +A Dv: cryoanesthesia / B D: cryoanaesthesia + +# cryptanalyzes (level 80) +A Z: cryptanalyzes / B: cryptanalyses + +# cryptesthesia (level 80) +A Dv: cryptesthesia / B D: cryptaesthesia +A Dv: cryptesthesias / B D: cryptaesthesias + +# cryptesthetic (level 80) +A Dv: cryptesthetic / B D: cryptaesthetic + +# crystallizability (level 80) +A Z: crystallizability / B: crystallisability +A Z: crystallizabilities / B: crystallisabilities +A Z: crystallizability's / B: crystallisability's + +# crystallizable (level 80) +A Z: crystallizable / B: crystallisable +A Z: crystallizabler / B: crystallisabler +A Z: crystallizables / B: crystallisables +A Z: crystallizablest / B: crystallisablest +A Z: crystallizable's / B: crystallisable's + +# crystallization (level 35) +A Z: crystallization / B: crystallisation +A Z: crystallizations / B: crystallisations +A Z: crystallization's / B: crystallisation's + +# crystallize (level 35) +A Z: crystallize / AV: crystalize / B: crystallise +A Z: crystallized / AV: crystalized / B: crystallised +A Z: crystallizing / AV: crystalizing / B: crystallising +A Z: crystallizes / AV: crystalizes / B: crystallises + +# crystallizer (level 80) +A Z: crystallizer / B: crystalliser +A Z: crystallizers / B: crystallisers + +# Cubanize (level 95) +A Z: Cubanize / B: Cubanise +A Z: Cubanizes / B: Cubanises +A Z: Cubanize's / B: Cubanise's + +# cuckoldize (level 80) +A Z: cuckoldize / B: cuckoldise +A Z: cuckoldized / B: cuckoldised +A Z: cuckoldizing / B: cuckoldising +A Z: cuckoldizes / B: cuckoldises + +# cudgel (level 50) +A: cudgeled / B: cudgelled +A: cudgeling / B: cudgelling +A: cudgelings / B: cudgellings + +# cudgeler (level 80) +A: cudgeler / B: cudgeller +A: cudgelers / B: cudgellers +A: cudgeler's / B: cudgeller's + +# culicide (level 95) +A: culicide / B: culicidae + +# culturization (level 95) +A Z: culturization / B: culturisation +A Z: culturizations / B: culturisations +A Z: culturization's / B: culturisation's + +# culturize (level 95) +A Z: culturize / B: culturise +A Z: culturizes / B: culturises + +# cupel (level 80) +A: cupeled / B: cupelled +A: cupeling / B: cupelling + +# cupelation (level 70) +A: cupelation / B: cupellation + +# cupeler (level 80) +A: cupeler / B: cupeller +A: cupelers / B: cupellers +A: cupeler's / B: cupeller's + +# cupule (level 70) +A: cupule / B: cupulae + +# curarize (level 70) +A Z: curarize / B: curarise +A Z: curarized / B: curarised +A Z: curarizing / B: curarising +A Z: curarizes / B: curarises + +# curatize (level 95) +A Z: curatize / B: curatise +A Z: curatizes / B: curatises + +# curb (level 35) +A B: curb | restrain +A B: curbed | restrain +A B: curbing | restrain +A B: curbs | restrain +A B: curb's | restrain +A C: curb / B: kerb | street edge +A C: curbed / B: kerbed | street edge +A C: curbing / B: kerbing | street edge +A C: curbs / B: kerbs | street edge +A C: curb's / B: kerb's | street edge + +# curlicue (level 50) +_: curlicue / _V: curlycue | +_: curlicues / _V: curlycues | +_: curlicue's / _V: curlycue's | +_: curlicue | +_: curlicues | + +# curricularization (level 95) +A Z: curricularization / B: curricularisation +A Z: curricularizations / B: curricularisations +A Z: curricularization's / B: curricularisation's + +# curricularize (level 95) +A Z: curricularize / B: curricularise +A Z: curricularizes / B: curricularises + +# curtsy (level 35) +A B: curtsy / AV Bv: curtsey +A B: curtsied / AV Bv: curtseyed +A B: curtsying / AV Bv: curtseying +A B: curtsies / AV Bv: curtseys +A B: curtsy's / AV Bv: curtsey's + +# curvaceous (level 50) +_: curvaceous / _V: curvacious + +# customizable (level 95) +A Z: customizable / B: customisable + +# customization (level 35) +A Z: customization / B: customisation +A Z: customizations / B: customisations +A Z: customization's / B: customisation's + +# customize (level 35) +A Z: customize / B: customise +A Z: customized / B: customised +A Z: customizing / B: customising +A Z: customizes / B: customises + +# customizer (level 80) +A Z: customizer / B: customiser +A Z: customizers / B: customisers + +# cutesy (level 50) +_: cutesy / _-: cutesie + +# cuticolor (level 95) +A: cuticolor / B: cuticolour + +# cutinization (level 80) +A Z: cutinization / B: cutinisation +A Z: cutinizations / B: cutinisations +A Z: cutinization's / B: cutinisation's + +# cutinize (level 70) +A Z: cutinize / B: cutinise +A Z: cutinized / B: cutinised +A Z: cutinizing / B: cutinising +A Z: cutinizes / B: cutinises + +# cutization (level 95) +A Z: cutization / B: cutisation +A Z: cutizations / B: cutisations +A Z: cutization's / B: cutisation's + +# cutlass (level 50) +_: cutlass / _-: cutlas +_: cutlasses / _-: cutlases +_: cutlass's / _-: cutlas's + +# cuve (level 95) +A: cuve / B: cuvae + +# Cyanee (level 95) +A: Cyanee / B: Cyaneae +A: Cyanee's / B: Cyaneae's + +# cyanize (level 80) +A Z: cyanize / B: cyanise +A Z: cyanized / B: cyanised +A Z: cyanizing / B: cyanising +A Z: cyanizes / B: cyanises + +# cyanomethemoglobin (level 95) +A Dv: cyanomethemoglobin / B D: cyanomethaemoglobin + +# cyclization (level 80) +A Z: cyclization / B: cyclisation +A Z: cyclizations / B: cyclisations +A Z: cyclization's / B: cyclisation's + +# cyclize (level 80) +A Z: cyclize / B: cyclise +A Z: cyclized / B: cyclised +A Z: cyclizing / B: cyclising +A Z: cyclizes / B: cyclises + +# cyclopedia (level 60) +A B: cyclopedia / Av Bv: cyclopaedia +A B: cyclopedias / Av Bv: cyclopaedias +A B: cyclopedia's / Av Bv: cyclopaedia's + +# cyclopedic (level 80) +A B: cyclopedic / Av Bv: cyclopaedic + +# cyclopedically (level 95) +A B: cyclopedically / Av Bv: cyclopaedically + +# cyclopedist (level 80) +A B: cyclopedist / Av Bv: cyclopaedist +A B: cyclopedist's / Av Bv: cyclopaedist's + +# cyme (level 70) +A: cyme / B: cymae + +# czar (level 35) +A Bv C: czar / AV1 Bv: tzar / AV2 B Cv: tsar +A Bv C: czars / AV1 Bv: tzars / AV2 B Cv: tsars +A Bv C: czar's / AV1 Bv: tzar's / AV2 B Cv: tsar's + +# czardom (level 70) +_: czardom / _V1: tzardom / _V2: tsardom +_: czardoms / _V1: tzardoms / _V2: tsardoms +_: czardom's / _V1: tzardom's / _V2: tsardom's + +# czarina (level 50) +_: czarina / _V: tzarina / _V: tsarina +_: czarinas / _V: tsarinas / _V: tzarinas +_: czarina's / _V: tzarina's / _V: tsarina's + +# czarism (level 55) +_: czarism / _V: tsarism / _V: tzarism +_: czarisms / _V: tsarisms / _V: tzarisms +_: czarism's / _V: tzarism's / _V: tsarism's + +# czarist (level 55) +_: czarist / _V: tzarist / _V: tsarist + +# Czechization (level 95) +A Z: Czechization / B: Czechisation +A Z: Czechizations / B: Czechisations +A Z: Czechization's / B: Czechisation's + +# danaide (level 95) +A: danaide / B: danaidae + +# dandizette (level 95) +A Z: dandizette / B: dandisette + +# dandyize (level 95) +A Z: dandyize / B: dandyise +A Z: dandyizes / B: dandyises + +# dane (level 95) +A: dane / B: danae + +# Danization (level 95) +A Z: Danization / B: Danisation +A Z: Danizations / B: Danisations +A Z: Danization's / B: Danisation's + +# Danize (level 95) +A Z: Danize / B: Danise +A Z: Danizes / B: Danises +A Z: Danize's / B: Danise's + +# Darwinize (level 95) +A Z: Darwinize / B: Darwinise +A Z: Darwinizes / B: Darwinises +A Z: Darwinize's / B: Darwinise's + +# dastardize (level 95) +A Z: dastardize / B: dastardise +A Z: dastardizes / B: dastardises + +# deaconize (level 95) +A Z: deaconize / B: deaconise +A Z: deaconizes / B: deaconises + +# deadrize (level 95) +A Z: deadrize / B: deadrise + +# dealcoholize (level 80) +A Z: dealcoholize / B: dealcoholise +A Z: dealcoholized / B: dealcoholised +A Z: dealcoholizing / B: dealcoholising +A Z: dealcoholizes / B: dealcoholises + +# deaminize (level 80) +A Z: deaminize / B: deaminise + +# deary (level 55) +_: deary / _v: dearie +_: deary's / _v: dearie's + +# decaliter (level 70) +A: decaliter / B: decalitre +A: decaliters / B: decalitres +A: decaliter's / B: decalitre's + +# decameter (level 70) +A: decameter / B: decametre +A: decameters / B: decametres +A: decameter's / B: decametre's + +# decapitalization (level 80) +A Z: decapitalization / B: decapitalisation +A Z: decapitalizations / B: decapitalisations + +# decapitalize (level 80) +A Z: decapitalize / B: decapitalise +A Z: decapitalized / B: decapitalised +A Z: decapitalizing / B: decapitalising +A Z: decapitalizes / B: decapitalises + +# decarbonization (level 80) +A Z: decarbonization / B: decarbonisation +A Z: decarbonizations / B: decarbonisations +A Z: decarbonization's / B: decarbonisation's + +# decarbonize (level 70) +A Z: decarbonize / B: decarbonise +A Z: decarbonized / B: decarbonised +A Z: decarbonizing / B: decarbonising +A Z: decarbonizes / B: decarbonises + +# decarbonizer (level 80) +A Z: decarbonizer / B: decarboniser +A Z: decarbonizers / B: decarbonisers +A Z: decarbonizer's / B: decarboniser's + +# decarburization (level 80) +A Z: decarburization / B: decarburisation +A Z: decarburizations / B: decarburisations +A Z: decarburization's / B: decarburisation's + +# decarburize (level 70) +A Z: decarburize / B: decarburise +A Z: decarburized / B: decarburised +A Z: decarburizing / B: decarburising +A Z: decarburizes / B: decarburises + +# decasualization (level 80) +A Z: decasualization / B: decasualisation +A Z: decasualizations / B: decasualisations +A Z: decasualization's / B: decasualisation's + +# decasualize (level 95) +A Z: decasualize / B: decasualise + +# decasualized (level 95) +A Z: decasualized / B: decasualised + +# decasualizing (level 95) +A Z: decasualizing / B: decasualising + +# decenters (level 80) +A: decenters / B: decentres + +# decentralization (level 35) +A Z: decentralization / B: decentralisation +A Z: decentralizations / B: decentralisations +A Z: decentralization's / B: decentralisation's + +# decentralizationist (level 95) +A Z: decentralizationist / B: decentralisationist + +# decentralize (level 35) +A Z: decentralize / B: decentralise +A Z: decentralized / B: decentralised +A Z: decentralizing / B: decentralising +A Z: decentralizes / B: decentralises + +# decerebrize (level 80) +A Z: decerebrize / B: decerebrise +A Z: decerebrized / B: decerebrised +A Z: decerebrizing / B: decerebrising +A Z: decerebrizes / B: decerebrises + +# dechristianization (level 80) +A Z: dechristianization / B: dechristianisation +A Z: dechristianizations / B: dechristianisations + +# dechristianize (level 80) +A Z: dechristianize / B: dechristianise +A Z: dechristianized / B: dechristianised +A Z: dechristianizing / B: dechristianising +A Z: dechristianizes / B: dechristianises + +# decigram (level 70) +A B C: decigram / Bv: decigramme +A B C: decigrams / Bv: decigrammes +A B C: decigram's / Bv: decigramme's + +# deciliter (level 60) +A: deciliter / B: decilitre +A: deciliters / B: decilitres +A: deciliter's / B: decilitre's + +# decimalization (level 55) +A Z: decimalization / B: decimalisation +A Z: decimalizations / B: decimalisations +A Z: decimalization's / B: decimalisation's + +# decimalize (level 70) +A Z: decimalize / B: decimalise +A Z: decimalized / B: decimalised +A Z: decimalizing / B: decimalising +A Z: decimalizes / B: decimalises + +# decimeter (level 60) +A: decimeter / B: decimetre +A: decimeters / B: decimetres +A: decimeter's / B: decimetre's + +# decivilize (level 80) +A Z: decivilize / B: decivilise +A Z: decivilized / B: decivilised +A Z: decivilizing / B: decivilising +A Z: decivilizes / B: decivilises + +# decolonization (level 50) +A Z: decolonization / B: decolonisation +A Z: decolonizations / B: decolonisations +A Z: decolonization's / B: decolonisation's + +# decolonize (level 50) +A Z: decolonize / B: decolonise +A Z: decolonized / B: decolonised +A Z: decolonizing / B: decolonising +A Z: decolonizes / B: decolonises + +# decolor (level 80) +A Cv DV: decolor / B C D: decolour +A Cv DV: decolored / B C D: decoloured +A Cv DV: decoloring / B C D: decolouring +A Cv DV: decolors / B C D: decolours + +# decolorant (level 70) +A Cv DV: decolorant / B C D: decolourant +A Cv DV: decolorants / B C D: decolourants + +# decolorate (level 80) +A: decolorate / B: decolourate +A: decolorated / B: decolourated +A: decolorates / B: decolourates + +# decoloration (level 80) +A: decoloration / B: decolouration +A: decolorations / B: decolourations +A: decoloration's / B: decolouration's + +# decolorimeter (level 95) +A: decolorimeter / B: decolourimeter + +# decolorization (level 80) +A: decolorization / B: decolourisation / Z: decolourization +A: decolorizations / B: decolourisations / Z: decolourizations +A: decolorization's / B: decolourisation's / Z: decolourization's + +# decolorize (level 70) +A: decolorize / B: decolourise / Z: decolourize +A: decolorized / B: decolourised / Z: decolourized +A: decolorizing / B: decolourising / Z: decolourizing +A: decolorizes / B: decolourises / Z: decolourizes + +# decolorizer (level 80) +A: decolorizer / B: decolouriser / Z: decolourizer +A: decolorizers / B: decolourisers / Z: decolourizers +A: decolorizer's / B: decolouriser's / Z: decolourizer's + +# decriminalization (level 50) +A Z: decriminalization / B: decriminalisation +A Z: decriminalizations / B: decriminalisations +A Z: decriminalization's / B: decriminalisation's + +# decriminalize (level 40) +A Z: decriminalize / B: decriminalise +A Z: decriminalized / B: decriminalised +A Z: decriminalizing / B: decriminalising +A Z: decriminalizes / B: decriminalises + +# dedal (level 70) +A: dedal / B: daedal + +# dedalian (level 80) +A: dedalian / B: daedalian + +# dedramatize (level 80) +A Z: dedramatize / B: dedramatise +A Z: dedramatized / B: dedramatised +A Z: dedramatizing / B: dedramatising +A Z: dedramatizes / B: dedramatises + +# deemphasization (level 99) +A Z: deemphasization / B: deemphasisation +A Z: deemphasization's / B: deemphasisation's + +# deemphasize (level 80) +A Z: deemphasize / B: deemphasise +A Z: deemphasized / B: deemphasised +A Z: deemphasizing / B: deemphasising +A Z: deemphasizes / B: deemphasises + +# deemphasizer (level 99) +A Z: deemphasizer / B: deemphasiser +A Z: deemphasizers / B: deemphasisers + +# deenergize (level 99) +A Z: deenergize / B: deenergise +A Z: deenergized / B: deenergised +A Z: deenergizing / B: deenergising +A Z: deenergizes / B: deenergises + +# deenergizer (level 99) +A Z: deenergizer / B: deenergiser + +# defedation (level 95) +A Dv: defedation / B D: defoedation + +# defeminization (level 80) +A Z: defeminization / B: defeminisation +A Z: defeminization's / B: defeminisation's + +# defeminize (level 80) +A Z: defeminize / B: defeminise +A Z: defeminized / B: defeminised +A Z: defeminizing / B: defeminising +A Z: defeminizes / B: defeminises + +# defense (level 10) +A Cv: defense / B C: defence +A Cv: defensed / B C: defenced +A Cv: defensing / B C: defencing +A Cv: defenses / B C: defences +A Cv: defense's / B C: defence's + +# defenseless (level 35) +A: defenseless / B: defenceless +A: defenselesser / B: defencelesser +A: defenselessest / B: defencelessest + +# defenselessly (level 60) +A: defenselessly / B: defencelessly +A: defenselesslier / B: defencelesslier +A: defenselessliest / B: defencelessliest + +# defenselessness (level 60) +A: defenselessness / B: defencelessness +A: defenselessnesses / B: defencelessnesses +A: defenselessness's / B: defencelessness's + +# defenseman (level 80) +A: defenseman / B: defenceman +A: defensemen / B: defencemen +A: defenseman's / B: defenceman's + +# defeudalize (level 80) +A Z: defeudalize / B: defeudalise +A Z: defeudalized / B: defeudalised +A Z: defeudalizing / B: defeudalising +A Z: defeudalizes / B: defeudalises + +# defibrinize (level 80) +A Z: defibrinize / B: defibrinise +A Z: defibrinized / B: defibrinised +A Z: defibrinizing / B: defibrinising +A Z: defibrinizes / B: defibrinises + +# definitization (level 95) +A Z: definitization / B: definitisation +A Z: definitizations / B: definitisations +A Z: definitization's / B: definitisation's + +# definitize (level 80) +A Z: definitize / B: definitise +A Z: definitized / B: definitised +A Z: definitizing / B: definitising +A Z: definitizes / B: definitises + +# deflectionization (level 95) +A Z: deflectionization / B: deflectionisation +A Z: deflectionizations / B: deflectionisations +A Z: deflectionization's / B: deflectionisation's + +# deflectionize (level 95) +A Z: deflectionize / B: deflectionise +A Z: deflectionizes / B: deflectionises + +# deformalize (level 80) +A Z: deformalize / B: deformalise + +# defunctionalization (level 95) +A Z: defunctionalization / B: defunctionalisation +A Z: defunctionalizations / B: defunctionalisations +A Z: defunctionalization's / B: defunctionalisation's + +# defunctionalize (level 95) +A Z: defunctionalize / B: defunctionalise +A Z: defunctionalizes / B: defunctionalises + +# deglycerolized (level 99) +A Z: deglycerolized / B: deglycerolised + +# dehumanization (level 50) +A Z: dehumanization / B: dehumanisation +A Z: dehumanizations / B: dehumanisations +A Z: dehumanization's / B: dehumanisation's + +# dehumanize (level 50) +A Z: dehumanize / B: dehumanise +A Z: dehumanized / B: dehumanised +A Z: dehumanizing / B: dehumanising +A Z: dehumanizes / B: dehumanises + +# dehydrogenization (level 80) +A Z: dehydrogenization / B: dehydrogenisation +A Z: dehydrogenization's / B: dehydrogenisation's + +# dehydrogenize (level 80) +A Z: dehydrogenize / B: dehydrogenise +A Z: dehydrogenized / B: dehydrogenised +A Z: dehydrogenizing / B: dehydrogenising + +# dehydrogenizer (level 95) +A Z: dehydrogenizer / B: dehydrogeniser +A Z: dehydrogenizer's / B: dehydrogeniser's + +# dehypnotization (level 80) +A Z: dehypnotization / B: dehypnotisation +A Z: dehypnotizations / B: dehypnotisations +A Z: dehypnotization's / B: dehypnotisation's + +# dehypnotize (level 70) +A Z: dehypnotize / B: dehypnotise +A Z: dehypnotized / B: dehypnotised +A Z: dehypnotizing / B: dehypnotising +A Z: dehypnotizes / B: dehypnotises + +# deindustrialization (level 80) +A Z: deindustrialization / B: deindustrialisation +A Z: deindustrializations / B: deindustrialisations +A Z: deindustrialization's / B: deindustrialisation's + +# deindustrialize (level 80) +A Z: deindustrialize / B: deindustrialise +A Z: deindustrialized / B: deindustrialised +A Z: deindustrializing / B: deindustrialising +A Z: deindustrializes / B: deindustrialises + +# deionization (level 80) +A Z: deionization / B: deionisation +A Z: deionization's / B: deionisation's + +# deionize (level 70) +A Z: deionize / B: deionise +A Z: deionized / B: deionised +A Z: deionizing / B: deionising +A Z: deionizes / B: deionises + +# dekagram (level 70) +A B C: dekagram / Bv: dekagramme +A B C: dekagrams / Bv: dekagrammes +A B C: dekagram's / Bv: dekagramme's + +# dekaliter (level 70) +A: dekaliter / B: dekalitre +A: dekaliters / B: dekalitres +A: dekaliter's / B: dekalitre's + +# dekameter (level 70) +A: dekameter / B: dekametre +A: dekameters / B: dekametres +A: dekameter's / B: dekametre's + +# delimitize (level 95) +A Z: delimitize / B: delimitise +A Z: delimitizes / B: delimitises + +# delocalization (level 80) +A Z: delocalization / B: delocalisation +A Z: delocalizations / B: delocalisations +A Z: delocalization's / B: delocalisation's + +# delocalize (level 70) +A Z: delocalize / B: delocalise +A Z: delocalized / B: delocalised +A Z: delocalizing / B: delocalising +A Z: delocalizes / B: delocalises + +# deluster (level 80) +A: deluster / B: delustre + +# demagnetizable (level 95) +A Z: demagnetizable / B: demagnetisable +A Z: demagnetizabler / B: demagnetisabler +A Z: demagnetizables / B: demagnetisables +A Z: demagnetizablest / B: demagnetisablest +A Z: demagnetizable's / B: demagnetisable's + +# demagnetization (level 50) +A Z: demagnetization / B: demagnetisation +A Z: demagnetizations / B: demagnetisations +A Z: demagnetization's / B: demagnetisation's + +# demagnetize (level 50) +A Z: demagnetize / B: demagnetise +A Z: demagnetized / B: demagnetised +A Z: demagnetizing / B: demagnetising +A Z: demagnetizes / B: demagnetises + +# demagnetizer (level 70) +A Z: demagnetizer / B: demagnetiser +A Z: demagnetizers / B: demagnetisers +A Z: demagnetizer's / B: demagnetiser's + +# demagogue (level 35) +A B: demagogue / AV: demagog +A B: demagogued / AV: demagoged +A B: demagoguing / AV: demagoging +A B: demagogues / AV: demagogs +A B: demagogue's / AV: demagog's + +# demagogueri (level 99) +_: demagogueri / _V: demagogri +_: demagogueris / _V: demagogris + +# demagoguery (level 50) +A B: demagoguery / AV: demagogry + +# demasculinization (level 95) +A Z: demasculinization / B: demasculinisation +A Z: demasculinization's / B: demasculinisation's + +# demasculinize (level 70) +A Z: demasculinize / B: demasculinise + +# demasculinized (level 95) +A Z: demasculinized / B: demasculinised + +# demasculinizing (level 95) +A Z: demasculinizing / B: demasculinising + +# dematerialization (level 80) +A Z: dematerialization / B: dematerialisation +A Z: dematerializations / B: dematerialisations +A Z: dematerialization's / B: dematerialisation's + +# dematerialize (level 70) +A Z: dematerialize / B: dematerialise +A Z: dematerialized / B: dematerialised +A Z: dematerializing / B: dematerialising +A Z: dematerializes / B: dematerialises + +# demeanor (level 35) +A Cv DV: demeanor / B C D: demeanour +A Cv DV: demeanors / B C D: demeanours +A Cv DV: demeanor's / B C D: demeanour's + +# demilitarization (level 50) +A Z: demilitarization / B: demilitarisation +A Z: demilitarizations / B: demilitarisations +A Z: demilitarization's / B: demilitarisation's + +# demilitarize (level 50) +A Z: demilitarize / B: demilitarise +A Z: demilitarized / B: demilitarised +A Z: demilitarizing / B: demilitarising +A Z: demilitarizes / B: demilitarises + +# demiluster (level 95) +A: demiluster / B: demilustre + +# demineralization (level 70) +A Z: demineralization / B: demineralisation +A Z: demineralizations / B: demineralisations +A Z: demineralization's / B: demineralisation's + +# demineralize (level 70) +A Z: demineralize / B: demineralise +A Z: demineralized / B: demineralised +A Z: demineralizing / B: demineralising +A Z: demineralizes / B: demineralises + +# demineralizer (level 70) +A Z: demineralizer / B: demineraliser + +# demobilization (level 50) +A Z: demobilization / B: demobilisation +A Z: demobilizations / B: demobilisations +A Z: demobilization's / B: demobilisation's + +# demobilize (level 50) +A Z: demobilize / B: demobilise +A Z: demobilized / B: demobilised +A Z: demobilizing / B: demobilising +A Z: demobilizes / B: demobilises + +# democratization (level 50) +A Z: democratization / B: democratisation +A Z: democratizations / B: democratisations +A Z: democratization's / B: democratisation's + +# democratize (level 50) +A Z: democratize / B: democratise +A Z: democratized / B: democratised +A Z: democratizing / B: democratising +A Z: democratizes / B: democratises + +# democratizer (level 80) +A Z: democratizer / B: democratiser + +# demonetization (level 60) +A Z: demonetization / B: demonetisation +A Z: demonetizations / B: demonetisations +A Z: demonetization's / B: demonetisation's + +# demonetize (level 60) +A Z: demonetize / B: demonetise +A Z: demonetized / B: demonetised +A Z: demonetizing / B: demonetising +A Z: demonetizes / B: demonetises + +# demonian (level 80) +A Dv: demonian / B D: daemonian + +# demonization (level 70) +A Z: demonization / B: demonisation + +# demonize (level 55) +A Z: demonize / B: demonise +A Z: demonized / B: demonised +A Z: demonizing / B: demonising +A Z: demonizes / B: demonises + +# demoralization (level 50) +A Z: demoralization / B: demoralisation +A Z: demoralizations / B: demoralisations +A Z: demoralization's / B: demoralisation's + +# demoralize (level 35) +A Z: demoralize / B: demoralise +A Z: demoralized / B: demoralised +A Z: demoralizing / B: demoralising +A Z: demoralizes / B: demoralises + +# demoralizer (level 70) +A Z: demoralizer / B: demoraliser +A Z: demoralizers / B: demoralisers +A Z: demoralizer's / B: demoraliser's + +# demoralizingly (level 80) +A Z: demoralizingly / B: demoralisingly + +# demutualization (level 80) +A Z: demutualization / B: demutualisation +A Z: demutualizations / B: demutualisations + +# demutualize (level 80) +A Z: demutualize / B: demutualise +A Z: demutualized / B: demutualised +A Z: demutualizing / B: demutualising +A Z: demutualizes / B: demutualises + +# demythologization (level 70) +A Z: demythologization / B: demythologisation +A Z: demythologizations / B: demythologisations +A Z: demythologization's / B: demythologisation's + +# demythologize (level 70) +A Z: demythologize / B: demythologise +A Z: demythologized / B: demythologised +A Z: demythologizing / B: demythologising +A Z: demythologizes / B: demythologises + +# demythologizer (level 80) +A Z: demythologizer / B: demythologiser + +# denationalization (level 55) +A Z: denationalization / B: denationalisation +A Z: denationalizations / B: denationalisations +A Z: denationalization's / B: denationalisation's + +# denationalize (level 55) +A Z: denationalize / B: denationalise +A Z: denationalized / B: denationalised +A Z: denationalizing / B: denationalising +A Z: denationalizes / B: denationalises + +# denaturalization (level 80) +A Z: denaturalization / B: denaturalisation +A Z: denaturalizations / B: denaturalisations +A Z: denaturalization's / B: denaturalisation's + +# denaturalize (level 70) +A Z: denaturalize / B: denaturalise +A Z: denaturalized / B: denaturalised +A Z: denaturalizing / B: denaturalising +A Z: denaturalizes / B: denaturalises + +# denaturization (level 95) +A Z: denaturization / B: denaturisation +A Z: denaturizations / B: denaturisations +A Z: denaturization's / B: denaturisation's + +# denaturize (level 80) +A Z: denaturize / B: denaturise +A Z: denaturized / B: denaturised +A Z: denaturizing / B: denaturising +A Z: denaturizes / B: denaturises + +# denaturizer (level 95) +A Z: denaturizer / B: denaturiser +A Z: denaturizers / B: denaturisers +A Z: denaturizer's / B: denaturiser's + +# denicotinize (level 95) +A Z: denicotinize / B: denicotinise + +# denizenize (level 95) +A Z: denizenize / B: denizenise +A Z: denizenizes / B: denizenises + +# denominationalize (level 95) +A Z: denominationalize / B: denominationalise +A Z: denominationalizes / B: denominationalises + +# denormalize (level 99) +A Z: denormalize / B: denormalise + +# dentalization (level 95) +A Z: dentalization / B: dentalisation +A Z: dentalizations / B: dentalisations +A Z: dentalization's / B: dentalisation's + +# dentalize (level 95) +A Z: dentalize / B: dentalise +A Z: dentalized / B: dentalised +A Z: dentalizing / B: dentalising +A Z: dentalizes / B: dentalises + +# dentin (level 50) +A: dentin / Av B: dentine +A: dentins / Av B: dentines +A: dentin's / Av B: dentine's + +# denuclearization (level 80) +A Z: denuclearization / B: denuclearisation +A Z: denuclearizations / B: denuclearisations +A Z: denuclearization's / B: denuclearisation's + +# denuclearize (level 60) +A Z: denuclearize / B: denuclearise +A Z: denuclearized / B: denuclearised +A Z: denuclearizing / B: denuclearising +A Z: denuclearizes / B: denuclearises + +# deodorization (level 60) +A Z: deodorization / B: deodorisation +A Z: deodorizations / B: deodorisations +A Z: deodorization's / B: deodorisation's + +# deodorize (level 35) +A Z: deodorize / B: deodorise +A Z: deodorized / B: deodorised +A Z: deodorizing / B: deodorising +A Z: deodorizes / B: deodorises + +# deodorizer (level 50) +A Z: deodorizer / B: deodoriser +A Z: deodorizers / B: deodorisers +A Z: deodorizer's / B: deodoriser's + +# deoxidization (level 80) +A Z: deoxidization / B: deoxidisation +A Z: deoxidizations / B: deoxidisations +A Z: deoxidization's / B: deoxidisation's + +# deoxidize (level 70) +A Z: deoxidize / B: deoxidise +A Z: deoxidized / B: deoxidised +A Z: deoxidizing / B: deoxidising +A Z: deoxidizes / B: deoxidises + +# deoxidizer (level 80) +A Z: deoxidizer / B: deoxidiser +A Z: deoxidizers / B: deoxidisers +A Z: deoxidizer's / B: deoxidiser's + +# deoxygenize (level 80) +A Z: deoxygenize / B: deoxygenise +A Z: deoxygenized / B: deoxygenised +A Z: deoxygenizing / B: deoxygenising +A Z: deoxygenizes / B: deoxygenises + +# departmentalization (level 60) +A Z: departmentalization / B: departmentalisation +A Z: departmentalizations / B: departmentalisations +A Z: departmentalization's / B: departmentalisation's + +# departmentalize (level 50) +A Z: departmentalize / B: departmentalise +A Z: departmentalized / B: departmentalised +A Z: departmentalizing / B: departmentalising +A Z: departmentalizes / B: departmentalises + +# departmentization (level 95) +A Z: departmentization / B: departmentisation +A Z: departmentizations / B: departmentisations +A Z: departmentization's / B: departmentisation's + +# departmentize (level 95) +A Z: departmentize / B: departmentise +A Z: departmentizes / B: departmentises + +# depauperization (level 80) +A Z: depauperization / B: depauperisation + +# depauperize (level 80) +A Z: depauperize / B: depauperise +A Z: depauperized / B: depauperised +A Z: depauperizing / B: depauperising +A Z: depauperizes / B: depauperises + +# dependence (level 20) +A B: dependence / AV: dependance +A B: dependences / AV: dependances +A B: dependence's / AV: dependance's + +# dependent (level 20) +A B: dependent | +A Bv: dependent / B: dependant | +A Bv: dependents / B: dependants | +A Bv: dependent's / B: dependant's | + +# depersonalization (level 70) +A Z: depersonalization / B: depersonalisation +A Z: depersonalizations / B: depersonalisations +A Z: depersonalization's / B: depersonalisation's + +# depersonalize (level 55) +A Z: depersonalize / B: depersonalise +A Z: depersonalized / B: depersonalised +A Z: depersonalizing / B: depersonalising +A Z: depersonalizes / B: depersonalises + +# depolarization (level 60) +A Z: depolarization / B: depolarisation +A Z: depolarizations / B: depolarisations +A Z: depolarization's / B: depolarisation's + +# depolarize (level 60) +A Z: depolarize / B: depolarise +A Z: depolarized / B: depolarised +A Z: depolarizing / B: depolarising +A Z: depolarizes / B: depolarises + +# depolarizer (level 80) +A Z: depolarizer / B: depolariser +A Z: depolarizers / B: depolarisers +A Z: depolarizer's / B: depolariser's + +# depoliticization (level 70) +A Z: depoliticization / B: depoliticisation + +# depoliticize (level 50) +A Z: depoliticize / B: depoliticise +A Z: depoliticized / B: depoliticised +A Z: depoliticizing / B: depoliticising +A Z: depoliticizes / B: depoliticises + +# depolymerization (level 80) +A Z: depolymerization / B: depolymerisation +A Z: depolymerizations / B: depolymerisations +A Z: depolymerization's / B: depolymerisation's + +# depolymerize (level 70) +A Z: depolymerize / B: depolymerise +A Z: depolymerized / B: depolymerised +A Z: depolymerizing / B: depolymerising +A Z: depolymerizes / B: depolymerises + +# depressurization (level 55) +A Z: depressurization / B: depressurisation +A Z: depressurizations / B: depressurisations +A Z: depressurization's / B: depressurisation's + +# depressurize (level 55) +A Z: depressurize / B: depressurise +A Z: depressurized / B: depressurised +A Z: depressurizing / B: depressurising +A Z: depressurizes / B: depressurises + +# deputationize (level 95) +A Z: deputationize / B: deputationise +A Z: deputationizes / B: deputationises + +# deputization (level 80) +A Z: deputization / B: deputisation + +# deputize (level 50) +A Z: deputize / B: deputise +A Z: deputized / B: deputised +A Z: deputizing / B: deputising +A Z: deputizes / B: deputises + +# deracialize (level 80) +A Z: deracialize / B: deracialise +A Z: deracialized / B: deracialised +A Z: deracializing / B: deracialising +A Z: deracializes / B: deracialises + +# derationalization (level 95) +A Z: derationalization / B: derationalisation +A Z: derationalizations / B: derationalisations +A Z: derationalization's / B: derationalisation's + +# derationalize (level 95) +A Z: derationalize / B: derationalise +A Z: derationalizes / B: derationalises + +# deratization (level 95) +A Z: deratization / B: deratisation +A Z: deratizations / B: deratisations +A Z: deratization's / B: deratisation's + +# derealization (level 80) +A Z: derealization / B: derealisation + +# derecognize (level 80) +A Z: derecognize / B: derecognise +A Z: derecognized / B: derecognised +A Z: derecognizing / B: derecognising +A Z: derecognizes / B: derecognises + +# deregulationize (level 95) +A Z: deregulationize / B: deregulationise +A Z: deregulationizes / B: deregulationises + +# dereligionize (level 80) +A Z: dereligionize / B: dereligionise +A Z: dereligionized / B: dereligionised +A Z: dereligionizing / B: dereligionising +A Z: dereligionizes / B: dereligionises + +# derk (level 80) +A: derk / B: drek + +# dermatorrhea (level 95) +A Dv: dermatorrhea / B D: dermatorrhoea + +# Derr (level 95) +A: Derr / B: Drer +A: Derr's / B: Drer's + +# desacralization (level 80) +A Z: desacralization / B: desacralisation +A Z: desacralizations / B: desacralisations + +# desacralize (level 80) +A Z: desacralize / B: desacralise +A Z: desacralized / B: desacralised +A Z: desacralizing / B: desacralising +A Z: desacralizes / B: desacralises + +# desalinization (level 60) +A Z: desalinization / B: desalinisation +A Z: desalinizations / B: desalinisations +A Z: desalinization's / B: desalinisation's + +# desalinize (level 60) +A Z: desalinize / B: desalinise +A Z: desalinized / B: desalinised +A Z: desalinizing / B: desalinising +A Z: desalinizes / B: desalinises + +# descendant (level 35) +A B: descendant / AV: descendent | +A B: descendants / AV: descendents | +A B: descendant's / AV: descendent's | +A: descendant / AV B: descendent | + +# desensitization (level 50) +A Z: desensitization / B: desensitisation +A Z: desensitizations / B: desensitisations +A Z: desensitization's / B: desensitisation's + +# desensitize (level 50) +A Z: desensitize / B: desensitise +A Z: desensitized / B: desensitised +A Z: desensitizing / B: desensitising +A Z: desensitizes / B: desensitises + +# desensitizer (level 70) +A Z: desensitizer / B: desensitiser +A Z: desensitizers / B: desensitisers +A Z: desensitizer's / B: desensitiser's + +# desertization (level 80) +A Z: desertization / B: desertisation +A Z: desertizations / B: desertisations + +# desexualization (level 80) +A Z: desexualization / B: desexualisation +A Z: desexualizations / B: desexualisations +A Z: desexualization's / B: desexualisation's + +# desexualize (level 70) +A Z: desexualize / B: desexualise +A Z: desexualized / B: desexualised +A Z: desexualizing / B: desexualising +A Z: desexualizes / B: desexualises + +# desilverization (level 80) +A Z: desilverization / B: desilverisation +A Z: desilverizations / B: desilverisations + +# desilverize (level 80) +A Z: desilverize / B: desilverise +A Z: desilverized / B: desilverised +A Z: desilverizing / B: desilverising +A Z: desilverizes / B: desilverises + +# despiritualization (level 95) +A Z: despiritualization / B: despiritualisation + +# despiritualize (level 80) +A Z: despiritualize / B: despiritualise + +# despotize (level 95) +A Z: despotize / B: despotise +A Z: despotizes / B: despotises + +# destabilization (level 55) +A Z: destabilization / B: destabilisation + +# destabilize (level 35) +A Z: destabilize / B: destabilise +A Z: destabilized / B: destabilised +A Z: destabilizing / B: destabilising +A Z: destabilizes / B: destabilises + +# destabilizer (level 80) +A Z: destabilizer / B: destabiliser +A Z: destabilizers / B: destabilisers + +# destalinize (level 95) +A Z: destalinize / B: destalinise +A Z: destalinized / B: destalinised +A Z: destalinizing / B: destalinising +A Z: destalinizes / B: destalinises + +# desterilize (level 80) +A Z: desterilize / B: desterilise + +# destigmatization (level 95) +A Z: destigmatization / B: destigmatisation + +# desulfurization (level 80) +A: desulfurization / B: desulphurisation / Z: desulphurization +A: desulfurizations / B: desulphurisations / Z: desulphurizations +A: desulfurization's / B: desulphurisation's / Z: desulphurization's + +# desulfurize (level 70) +A: desulfurize / B: desulphurise / Z: desulphurize +A: desulfurized / B: desulphurised / Z: desulphurized +A: desulfurizing / B: desulphurising / Z: desulphurizing +A: desulfurizes / B: desulphurises / Z: desulphurizes + +# desulfurizer (level 80) +A Z: desulfurizer / B: desulfuriser +A Z: desulfurizer's / B: desulfuriser's + +# desulphurizer (level 80) +A Z: desulphurizer / B: desulphuriser +A Z: desulphurizers / B: desulphurisers + +# desynchronization (level 95) +A Z: desynchronization / B: desynchronisation +A Z: desynchronizations / B: desynchronisations +A Z: desynchronization's / B: desynchronisation's + +# desynchronize (level 95) +A Z: desynchronize / B: desynchronise +A Z: desynchronized / B: desynchronised +A Z: desynchronizing / B: desynchronising +A Z: desynchronizes / B: desynchronises + +# detribalization (level 80) +A Z: detribalization / B: detribalisation +A Z: detribalizations / B: detribalisations +A Z: detribalization's / B: detribalisation's + +# detribalize (level 70) +A Z: detribalize / B: detribalise +A Z: detribalized / B: detribalised +A Z: detribalizing / B: detribalising +A Z: detribalizes / B: detribalises + +# deva (level 70) +A: deva / B: daeva + +# devalorization (level 80) +A Z: devalorization / B: devalorisation +A Z: devalorizations / B: devalorisations + +# devalorize (level 80) +A Z: devalorize / B: devalorise +A Z: devalorized / B: devalorised +A Z: devalorizing / B: devalorising +A Z: devalorizes / B: devalorises + +# devel (level 80) +A: develed / B: develled +A: develing / B: develling + +# devil (level 35) +A: deviled / B: devilled +A: deviling / B: devilling + +# devilize (level 95) +A Z: devilize / B: devilise +A Z: devilizes / B: devilises + +# devitalization (level 80) +A Z: devitalization / B: devitalisation +A Z: devitalizations / B: devitalisations +A Z: devitalization's / B: devitalisation's + +# devitalize (level 60) +A Z: devitalize / B: devitalise +A Z: devitalized / B: devitalised +A Z: devitalizing / B: devitalising +A Z: devitalizes / B: devitalises + +# devocalization (level 80) +A Z: devocalization / B: devocalisation +A Z: devocalization's / B: devocalisation's + +# devocalize (level 80) +A Z: devocalize / B: devocalise +A Z: devocalized / B: devocalised +A Z: devocalizing / B: devocalising +A Z: devocalizes / B: devocalises + +# devolatilization (level 80) +A Z: devolatilization / B: devolatilisation +A Z: devolatilizations / B: devolatilisations +A Z: devolatilization's / B: devolatilisation's + +# devolatilize (level 80) +A Z: devolatilize / B: devolatilise +A Z: devolatilized / B: devolatilised +A Z: devolatilizing / B: devolatilising +A Z: devolatilizes / B: devolatilises + +# dexterous (level 35) +_: dexterous / _V: dextrous + +# dexterously (level 50) +_: dexterously / _V: dextrously + +# dexterousness (level 60) +_: dexterousness / _V: dextrousness + +# diabolization (level 95) +A Z: diabolization / B: diabolisation +A Z: diabolizations / B: diabolisations +A Z: diabolization's / B: diabolisation's + +# diabolize (level 70) +A Z: diabolize / B: diabolise +A Z: diabolized / B: diabolised +A Z: diabolizing / B: diabolising +A Z: diabolizes / B: diabolises + +# diagonalizable (level 80) +A Z: diagonalizable / B: diagonalisable + +# diagonalization (level 80) +A Z: diagonalization / B: diagonalisation + +# diagonalize (level 70) +A Z: diagonalize / B: diagonalise +A Z: diagonalized / B: diagonalised +A Z: diagonalizing / B: diagonalising +A Z: diagonalizes / B: diagonalises + +# dial (level 20) +A C: dialed / B Cv: dialled +A C: dialing / B Cv: dialling +A C: dialings / B Cv: diallings +A C: dialing's / B Cv: dialling's + +# dialecticize (level 95) +A Z: dialecticize / B: dialecticise +A Z: dialecticizes / B: dialecticises + +# dialer (level 70) +A: dialer / B: dialler +A: dialers / B: diallers +A: dialer's / B: dialler's + +# dialist (level 80) +A: dialist / B: diallist +A: dialists / B: diallists +A: dialist's / B: diallist's + +# dialogize (level 70) +A Z: dialogize / B: dialogise +A Z: dialogized / B: dialogised +A Z: dialogizing / B: dialogising +A Z: dialogizes / B: dialogises + +# dialogue (level 20) +A B: dialogue / AV: dialog +A B: dialogued / AV: dialogged +A B: dialoguing / AV: dialogging +A B: dialogues / AV: dialogs +A B: dialogue's / AV: dialog's +A B Dv: dialog / Bv D: dialogue | dialog box +## Macquarie prefers dialogue (box) even for computing. + +# dialyzability (level 80) +A: dialyzability / B: dialysability +A: dialyzabilities / B: dialysabilities +A: dialyzability's / B: dialysability's + +# dialyzable (level 80) +A: dialyzable / B: dialysable +A: dialyzabler / B: dialysabler +A: dialyzables / B: dialysables +A: dialyzablest / B: dialysablest +A: dialyzable's / B: dialysable's + +# dialyzate (level 80) +A C: dialyzate / B: dialysate +A C: dialyzates / B: dialysates +A C: dialyzate's / B: dialysate's + +# dialyzation (level 80) +A C: dialyzation / B: dialysation +A C: dialyzation's / B: dialysation's + +# dialyze (level 50) +A C: dialyze / B: dialyse +A C: dialyzed / B: dialysed +A C: dialyzing / B: dialysing +A C: dialyzes / B: dialyses +A B: dialyses | [dialysis] + +# dialyzer (level 70) +A C: dialyzer / B: dialyser +A C: dialyzers / B: dialysers +A C: dialyzer's / B: dialyser's + +# diamondize (level 95) +A Z: diamondize / B: diamondise +A Z: diamondizes / B: diamondises + +# diarize (level 80) +A Z: diarize / B: diarise +A Z: diarized / B: diarised +A Z: diarizing / B: diarising +A Z: diarizes / B: diarises + +# diarrhea (level 35) +A C Dv: diarrhea / B D: diarrhoea +A C Dv: diarrheas / B D: diarrhoeas +A C Dv: diarrhea's / B D: diarrhoea's + +# diarrheal (level 70) +A C Dv: diarrheal / B D: diarrhoeal +A C Dv: diarrhealer / B D: diarrhoealer +A C Dv: diarrhealest / B D: diarrhoealest + +# diarrheic (level 70) +A Dv: diarrheic / B D: diarrhoeic +A Dv: diarrheicer / B D: diarrhoeicer +A Dv: diarrheicest / B D: diarrhoeicest + +# diarrhetic (level 80) +A Dv: diarrhetic / B D: diarrhoetic +A Dv: diarrheticer / B D: diarrhoeticer +A Dv: diarrheticest / B D: diarrhoeticest + +# dichotomization (level 80) +A Z: dichotomization / B: dichotomisation +A Z: dichotomizations / B: dichotomisations +A Z: dichotomization's / B: dichotomisation's + +# dichotomize (level 70) +A Z: dichotomize / B: dichotomise +A Z: dichotomized / B: dichotomised +A Z: dichotomizing / B: dichotomising +A Z: dichotomizes / B: dichotomises + +# dickey (level 50) +_: dickey / _v: dicky / _V: dickie +_: dickeys / _v _V: dickies +_: dickey's / _v: dicky's / _V: dickie's + +# diecious (level 70) +A B: dioecious / AV: diecious + +# dieciously (level 80) +A B: dioeciously / AV: dieciously + +# diene (level 80) +A: diene / B: diaene + +# dieretic (level 80) +A: dieretic / B: diaeretic + +# dieselization (level 80) +A Z: dieselization / B: dieselisation +A Z: dieselizations / B: dieselisations +A Z: dieselization's / B: dieselisation's + +# dieselize (level 70) +A Z: dieselize / B: dieselise +A Z: dieselized / B: dieselised +A Z: dieselizing / B: dieselising +A Z: dieselizes / B: dieselises + +# diestrous (level 80) +A Dv: diestrous / B D: dioestrous + +# diestrual (level 95) +A Dv: diestrual / B D: dioestrual + +# diestrum (level 80) +A Dv: diestrum / B D: dioestrum + +# diestrus (level 80) +A Dv: diestrus / B D: dioestrus +A Dv: diestruses / B D: dioestruses +A Dv: diestrus's / B D: dioestrus's + +# diethylstilbestrol (level 80) +A: diethylstilbestrol / B: diethylstilboestrol +A: diethylstilbestrol's / B: diethylstilboestrol's + +# dietitian (level 50) +A B: dietitian / Av Bv: dietician +A B: dietitians / Av Bv: dieticians +A B: dietitian's / Av Bv: dietician's + +# differentialize (level 95) +A Z: differentialize / B: differentialise +A Z: differentializes / B: differentialises + +# digitalization (level 80) +A Z: digitalization / B: digitalisation +A Z: digitalizations / B: digitalisations +A Z: digitalization's / B: digitalisation's + +# digitalize (level 70) +A Z: digitalize / B: digitalise +A Z: digitalized / B: digitalised +A Z: digitalizing / B: digitalising +A Z: digitalizes / B: digitalises + +# digitization (level 50) +A Z: digitization / B: digitisation +A Z: digitizations / B: digitisations +A Z: digitization's / B: digitisation's + +# digitize (level 35) +A Z: digitize / B: digitise +A Z: digitized / B: digitised +A Z: digitizing / B: digitising +A Z: digitizes / B: digitises + +# digitizer (level 70) +A Z: digitizer / B: digitiser +A Z: digitizers / B: digitisers +A Z: digitizer's / B: digitiser's + +# dike (level 35) +A Bv C: dike / AV B Cv: dyke +A Bv C: dikes / AV B Cv: dykes +A Bv C: dike's / AV B Cv: dyke's +A B: dyke / AV Bv: dike | lesbian +A B: dykes / AV Bv: dikes | lesbian +A B: dyke's / AV Bv: dike's | lesbian + +# dimensionalization (level 99) +A Z: dimensionalization / B: dimensionalisation + +# dimensionalize (level 99) +A Z: dimensionalize / B: dimensionalise +A Z: dimensionalized / B: dimensionalised +A Z: dimensionalizing / B: dimensionalising +A Z: dimensionalizes / B: dimensionalises + +# dimerization (level 80) +A Z: dimerization / B: dimerisation +A Z: dimerizations / B: dimerisations +A Z: dimerization's / B: dimerisation's + +# dimerize (level 80) +A Z: dimerize / B: dimerise +A Z: dimerized / B: dimerised +A Z: dimerizing / B: dimerising +A Z: dimerizes / B: dimerises + +# diminutivize (level 95) +A Z: diminutivize / B: diminutivise +A Z: diminutivizes / B: diminutivises + +# dingoes (level 50) +_: dingoes / _-: dingos + +# dionize (level 95) +A Z: dionize / B: dionise + +# diopter (level 70) +A Cv: diopter / B C: dioptre +A Cv: diopters / B C: dioptres +A Cv: diopter's / B C: dioptre's + +# diphthongization (level 80) +A Z: diphthongization / B: diphthongisation +A Z: diphthongizations / B: diphthongisations +A Z: diphthongization's / B: diphthongisation's + +# diphthongize (level 70) +A Z: diphthongize / B: diphthongise +A Z: diphthongized / B: diphthongised +A Z: diphthongizing / B: diphthongising +A Z: diphthongizes / B: diphthongises + +# diple (level 80) +A: diple / B: diploe +A: diploe / B: diploae +A: diploe's / B: diploae's + +# diplomatize (level 80) +A Z: diplomatize / B: diplomatise +A Z: diplomatized / B: diplomatised +A Z: diplomatizing / B: diplomatising +A Z: diplomatizes / B: diplomatises + +# dis (level 40) +_: dis / _V: diss +_: dises / _V: disses +_: dis's / _V: diss's + +# disangularize (level 95) +A Z: disangularize / B: disangularise +A Z: disangularizes / B: disangularises + +# disauthorize (level 80) +A Z: disauthorize / B: disauthorise +A Z: disauthorized / B: disauthorised +A Z: disauthorizing / B: disauthorising +A Z: disauthorizes / B: disauthorises + +# disbowel (level 80) +A: disboweled / B: disbowelled +A: disboweling / B: disbowelling + +# discanonization (level 95) +A Z: discanonization / B: discanonisation +A Z: discanonizations / B: discanonisations +A Z: discanonization's / B: discanonisation's + +# discanonize (level 95) +A Z: discanonize / B: discanonise +A Z: discanonizes / B: discanonises + +# discolor (level 35) +A Cv: discolor / B C: discolour +A Cv: discolored / B C: discoloured +A Cv: discolor's / B C: discolour's +A Cv: discoloreds / B C: discoloureds +A Cv: discolored's / B C: discoloured's +A Cv: discoloring / B C: discolouring +A Cv: discolors / B C: discolours + +# discolorate (level 95) +A: discolorate / B: discolourate + +# discolorated (level 95) +A: discolorated / B: discolourated + +# discoloration (level 35) +A B C: discoloration / B. Cv: discolouration +A B C: discolorations / B. Cv: discolourations +A B C: discoloration's / B. Cv: discolouration's +## See note for coloration + +# discoloredness (level 95) +A: discoloredness / B: discolouredness + +# discolorization (level 95) +A: discolorization / B: discolourisation / Z: discolourization +A: discolorizations / B: discolourisations / Z: discolourizations +A: discolorization's / B: discolourisation's / Z: discolourization's + +# discolorment (level 80) +A: discolorment / B: discolourment +A: discolorments / B: discolourments +A: discolorment's / B: discolourment's + +# discretization (level 99) +A Z: discretization / B: discretisation + +# discretize (level 99) +A Z: discretize / B: discretise + +# disdenominationalize (level 95) +A Z: disdenominationalize / B: disdenominationalise +A Z: disdenominationalizes / B: disdenominationalises + +# disdiplomatize (level 95) +A Z: disdiplomatize / B: disdiplomatise +A Z: disdiplomatizes / B: disdiplomatises + +# disembowel (level 50) +A: disemboweled / B: disembowelled +A: disemboweling / B: disembowelling + +# disequalize (level 95) +A Z: disequalize / B: disequalise +A Z: disequalizes / B: disequalises +A Z: disequalize's / B: disequalise's + +# disequalizer (level 95) +A Z: disequalizer / B: disequaliser +A Z: disequalizers / B: disequalisers + +# disfavor (level 35) +A Cv DV: disfavor / B C D: disfavour +A Cv DV: disfavored / B C D: disfavoured +A Cv DV: disfavoring / B C D: disfavouring +A Cv DV: disfavors / B C D: disfavours +A Cv DV: disfavor's / B C D: disfavour's + +# disfavorer (level 80) +A Cv DV: disfavorer / B C D: disfavourer +A Cv DV: disfavorers / B C D: disfavourers +A Cv DV: disfavorer's / B C D: disfavourer's + +# dishabille (level 60) +_: dishabille / _v: deshabille +_: dishabilles / _v: deshabilles +_: dishabille's / _v: deshabille's + +# disharmonize (level 80) +A Z: disharmonize / B: disharmonise +A Z: disharmonized / B: disharmonised +A Z: disharmonizing / B: disharmonising +A Z: disharmonizes / B: disharmonises + +# dishevel (level 40) +A: disheveled / B: dishevelled +A: disheveling / B: dishevelling + +# disheveler (level 99) +A: disheveler / B: disheveller + +# dishonor (level 35) +A Cv DV: dishonor / B C D: dishonour +A Cv DV: dishonored / B C D: dishonoured +A Cv DV: dishonoring / B C D: dishonouring +A Cv DV: dishonors / B C D: dishonours +A Cv DV: dishonor's / B C D: dishonour's + +# dishonorable (level 35) +A Cv DV: dishonorable / B C D: dishonourable +A Cv DV: dishonorabler / B C D: dishonourabler +A Cv DV: dishonorables / B C D: dishonourables +A Cv DV: dishonorablest / B C D: dishonourablest +A Cv DV: dishonorable's / B C D: dishonourable's + +# dishonorableness (level 80) +A Cv DV: dishonorableness / B C D: dishonourableness +A Cv DV: dishonorablenesses / B C D: dishonourablenesses +A Cv DV: dishonorableness's / B C D: dishonourableness's + +# dishonorably (level 40) +A Cv DV: dishonorably / B C D: dishonourably +A Cv DV: dishonorablier / B C D: dishonourablier +A Cv DV: dishonorablies / B C D: dishonourablies +A Cv DV: dishonorabliest / B C D: dishonourabliest + +# dishonorary (level 80) +A: dishonorary / B: dishonourary + +# dishonorer (level 80) +A Cv DV: dishonorer / B C D: dishonourer +A Cv DV: dishonorers / B C D: dishonourers +A Cv DV: dishonorer's / B C D: dishonourer's + +# dishumanize (level 95) +A Z: dishumanize / B: dishumanise +A Z: dishumanizes / B: dishumanises + +# dishumor (level 80) +A Cv DV: dishumor / B C D: dishumour +A Cv DV: dishumored / B C D: dishumoured +A Cv DV: dishumors / B C D: dishumours + +# disillusionize (level 70) +A Z: disillusionize / B: disillusionise +A Z: disillusionized / B: disillusionised +A Z: disillusionizing / B: disillusionising +A Z: disillusionizes / B: disillusionises + +# disillusionizer (level 95) +A Z: disillusionizer / B: disillusioniser +A Z: disillusionizers / B: disillusionisers +A Z: disillusionizer's / B: disillusioniser's + +# disindividualize (level 80) +A Z: disindividualize / B: disindividualise +A Z: disindividualized / B: disindividualised +A Z: disindividualizing / B: disindividualising +A Z: disindividualizes / B: disindividualises + +# disindustrialization (level 80) +A Z: disindustrialization / B: disindustrialisation +A Z: disindustrializations / B: disindustrialisations + +# disindustrialize (level 80) +A Z: disindustrialize / B: disindustrialise +A Z: disindustrialized / B: disindustrialised +A Z: disindustrializing / B: disindustrialising +A Z: disindustrializes / B: disindustrialises + +# disk (level 10) +A B: disk / Av Bv: disc | :1 +A B: disk's / Av Bv: disc's | :1 +A B: disc / Av Bv: disk | :2 +A B: disc's / Av Bv: disk's | :2 +## Disk vs. disc is a mess, rather than sort it out I will just mark +## each as a variant of each other. + +# disluster (level 95) +A: disluster / B: dislustre + +# dismalize (level 95) +A Z: dismalize / B: dismalise +A Z: dismalizes / B: dismalises + +# disnaturalization (level 95) +A Z: disnaturalization / B: disnaturalisation +A Z: disnaturalizations / B: disnaturalisations +A Z: disnaturalization's / B: disnaturalisation's + +# disnaturalize (level 80) +A Z: disnaturalize / B: disnaturalise +A Z: disnaturalized / B: disnaturalised +A Z: disnaturalizing / B: disnaturalising +A Z: disnaturalizes / B: disnaturalises + +# disorganization (level 40) +A Z: disorganization / B: disorganisation +A Z: disorganizations / B: disorganisations +A Z: disorganization's / B: disorganisation's + +# disorganize (level 40) +A Z: disorganize / B: disorganise +A Z: disorganized / B: disorganised +A Z: disorganizing / B: disorganising +A Z: disorganizes / B: disorganises + +# disorganizer (level 80) +A Z: disorganizer / B: disorganiser +A Z: disorganizers / B: disorganisers +A Z: disorganizer's / B: disorganiser's + +# disozonize (level 95) +A Z: disozonize / B: disozonise +A Z: disozonizes / B: disozonises + +# dispapalize (level 95) +A Z: dispapalize / B: dispapalise +A Z: dispapalizes / B: dispapalises + +# dispatch (level 35) +A B C: dispatch / AV Bv: despatch +A B C: dispatched / AV Bv: despatched +A B C: dispatching / AV Bv: despatching +A B C: dispatches / AV Bv: despatches +A B C: dispatch's / AV Bv: despatch's + +# dispauperize (level 80) +A Z: dispauperize / B: dispauperise +A Z: dispauperized / B: dispauperised +A Z: dispauperizing / B: dispauperising +A Z: dispauperizes / B: dispauperises + +# dispersonalize (level 95) +A Z: dispersonalize / B: dispersonalise +A Z: dispersonalizes / B: dispersonalises + +# dispopularize (level 95) +A Z: dispopularize / B: dispopularise +A Z: dispopularizes / B: dispopularises + +# disrealize (level 95) +A Z: disrealize / B: disrealise +A Z: disrealizes / B: disrealises + +# disscepter (level 95) +A: disscepter / B: dissceptre +A: disscepters / B: dissceptres +A: disscepter's / B: dissceptre's + +# disseize (level 70) +A Z: disseize / B: disseise +A Z: disseized / B: disseised +A Z: disseizing / B: disseising +A Z: disseizes / B: disseises + +# disseizee (level 80) +A Z: disseizee / B: disseisee + +# disseizin (level 70) +A: disseizin / B: disseisin +A: disseizins / B: disseisins +A: disseizin's / B: disseisin's + +# disseizor (level 80) +A: disseizor / B: disseisor +A: disseizors / B: disseisors +A: disseizor's / B: disseisor's + +# dissensualize (level 95) +A Z: dissensualize / B: dissensualise +A Z: dissensualizes / B: dissensualises + +# dissocialize (level 80) +A Z: dissocialize / B: dissocialise +A Z: dissocialized / B: dissocialised +A Z: dissocializing / B: dissocialising +A Z: dissocializes / B: dissocialises + +# dissyllabize (level 95) +A Z: dissyllabize / B: dissyllabise + +# dissyllabized (level 95) +A Z: dissyllabized / B: dissyllabised + +# dissyllabizing (level 95) +A Z: dissyllabizing / B: dissyllabising + +# dissympathize (level 95) +A Z: dissympathize / B: dissympathise +A Z: dissympathizes / B: dissympathises + +# distill (level 35) +A C: distill / AV B Cv: distil +A AV B C Cv: distilled +A AV B C Cv: distilling +A C: distills / AV B Cv: distils + +# disutilize (level 95) +A Z: disutilize / B: disutilise +A Z: disutilizes / B: disutilises + +# ditsy (level 55) +_: ditsy / _v: ditzy +_: ditsier / _v: ditzier + +# ditziness (level 99) +_: ditziness / _v: ditsiness +_: ditzinesses / _v: ditsinesses +_: ditziness's / _v: ditsiness's + +# diversicolored (level 95) +A: diversicolored / B: diversicoloured + +# divinister (level 95) +A: divinister / B: divinistre + +# divinization (level 95) +A Z: divinization / B: divinisation +A Z: divinizations / B: divinisations +A Z: divinization's / B: divinisation's + +# divinize (level 70) +A Z: divinize / B: divinise +A Z: divinized / B: divinised +A Z: divinizing / B: divinising +A Z: divinizes / B: divinises + +# divisionalization (level 80) +A Z: divisionalization / B: divisionalisation +A Z: divisionalizations / B: divisionalisations + +# djellaba (level 60) +_: djellaba / _V: djellabah +_: djellabas / _V: djellabahes +_: djellaba's / _V: djellabah's + +# Docete (level 80) +A: Docete / B: Docetae +A: Docete's / B: Docetae's + +# dockization (level 80) +A Z: dockization / B: dockisation +A Z: dockizations / B: dockisations +A Z: dockization's / B: dockisation's + +# dockize (level 80) +A Z: dockize / B: dockise +A Z: dockized / B: dockised +A Z: dockizing / B: dockising +A Z: dockizes / B: dockises + +# doctorization (level 95) +A Z: doctorization / B: doctorisation +A Z: doctorizations / B: doctorisations +A Z: doctorization's / B: doctorisation's + +# doctorize (level 95) +A Z: doctorize / B: doctorise +A Z: doctorizes / B: doctorises + +# doctrinization (level 95) +A Z: doctrinization / B: doctrinisation +A Z: doctrinizations / B: doctrinisations +A Z: doctrinization's / B: doctrinisation's + +# doctrinize (level 95) +A Z: doctrinize / B: doctrinise +A Z: doctrinizes / B: doctrinises + +# documentarization (level 80) +A Z: documentarization / B: documentarisation +A Z: documentarizations / B: documentarisations + +# documentarize (level 80) +A Z: documentarize / B: documentarise +A Z: documentarized / B: documentarised +A Z: documentarizing / B: documentarising +A Z: documentarizes / B: documentarises + +# documentize (level 95) +A Z: documentize / B: documentise +A Z: documentizes / B: documentises + +# Dodonean (level 80) +A: Dodonean / B: Dodonaean +A: Dodonean's / B: Dodonaean's + +# doggone (level 40) +_: doggone / _v: doggoned +_: doggoner / _v: doggoneder +_: doggonest / _v: doggonedest + +# doggy (level 50) +_: doggy / _v: doggie +_: doggy's / _v: doggie's + +# dogie (level 50) +_: dogie / _-: dogy +_ _-: dogies | +_: dogie's / _-: dogy's + +# dogmatization (level 80) +A Z: dogmatization / B: dogmatisation +A Z: dogmatizations / B: dogmatisations +A Z: dogmatization's / B: dogmatisation's + +# dogmatize (level 70) +A Z: dogmatize / B: dogmatise +A Z: dogmatized / B: dogmatised +A Z: dogmatizing / B: dogmatising +A Z: dogmatizes / B: dogmatises + +# dogmatizer (level 80) +A Z: dogmatizer / B: dogmatiser +A Z: dogmatizers / B: dogmatisers +A Z: dogmatizer's / B: dogmatiser's + +# dognap (level 80) +A: dognaped / B: dognapped +A: dognaping / B: dognapping + +# d'oh (level 55) +_: d'oh / _v: doh +_: d'ohs / _v: dohs +_: d'oh's / _v: doh's + +# dollarization (level 80) +A Z: dollarization / B: dollarisation +A Z: dollarizations / B: dollarisations + +# dolomitization (level 80) +A Z: dolomitization / B: dolomitisation +A Z: dolomitizations / B: dolomitisations +A Z: dolomitization's / B: dolomitisation's + +# dolomitize (level 80) +A Z: dolomitize / B: dolomitise +A Z: dolomitized / B: dolomitised +A Z: dolomitizing / B: dolomitising +A Z: dolomitizes / B: dolomitises + +# dolor (level 60) +A Cv DV: dolor / B C D: dolour +A Cv DV: dolors / B C D: dolours +A Cv DV: dolor's / B C D: dolour's + +# domesticize (level 80) +A Z: domesticize / B: domesticise +A Z: domesticized / B: domesticised +A Z: domesticizing / B: domesticising +A Z: domesticizes / B: domesticises + +# domine (level 80) +A: domine / B: dominae + +# dopey (level 35) +_: dopey / _V: dopy + +# dora (level 70) +A: dora / B: doura + +# Doricize (level 95) +A Z: Doricize / B: Doricise +A Z: Doricizes / B: Doricises +A Z: Doricize's / B: Doricise's + +# dorize (level 80) +A Z: dorize / B: dorise +A Z: dorized / B: dorised +A Z: dorizing / B: dorising +A Z: dorizes / B: dorises + +# doryline (level 95) +A: doryline / B: dorylinae + +# doughnut (level 35) +A B: doughnut / AV: donut +A B: doughnuts / AV: donuts +A B: doughnut's / AV: donut's + +# dowel (level 50) +A: doweled / B: dowelled +A: doweling / B: dowelling + +# doweler (level 99) +A: doweler / B: doweller + +# downdraft (level 60) +A C: downdraft / B: downdraught +A C: downdraft's / B: downdraught's + +# downward (level 20) +_: downward | +_: downward / _v: downwards | + +# dracena (level 70) +A: dracena / B: dracaena +A: dracenas / B: dracaenas + +# dracenaceae (level 95) +A: dracenaceae / B: dracaenaceae + +# draft (level 20) +A C: draft / B: draught | current +A C: drafts / B: draughts | current +A C: draft's / B: draught's | current +A B: draft | writing +A B: drafts | writing +A B: draft's | writing +A B C: draft / BV: draught | writing +A B C: drafted / BV: draughted | writing +A B C: drafting / BV: draughting | writing +A B C: drafts / BV: draughts | writing +A B: draught | (-) british: game of checkers +A B: draughts | (-) british: game of checkers +A B: draught's | (-) british: game of checkers + +# draftboard (level 55) +A B C: draughtboard / A- C-: draftboard | british word +A B C: draughtboards / A- C-: draftboards | british word + +# draftily (level 60) +A C: draftily / B: draughtily +A C: draftilier / B: draughtilier +A C: draftiliest / B: draughtiliest + +# draftiness (level 50) +A C: draftiness / B: draughtiness +A C: draftinesses / B: draughtinesses +A C: draftiness's / B: draughtiness's + +# draftsman (level 35) +A C: draftsman / B: draughtsman +A C: draftsmen / B: draughtsmen +A C: draftsman's / B: draughtsman's +A B: draughtsman | (-) british: checker +A B: draughtsman's | (-) british: checker +A B: draughtsmen | (-) british: checker + +# draftsmanship (level 50) +A C: draftsmanship / B: draughtsmanship +A C: draftsmanships / B: draughtsmanships +A C: draftsmanship's / B: draughtsmanship's + +# draftsperson (level 80) +A C: draftsperson / B: draughtsperson + +# draftswoman (level 55) +A C: draftswoman / B: draughtswoman +A C: draftswomen / B: draughtswomen +A C: draftswoman's / B: draughtswoman's + +# drafty (level 35) +A C: drafty / B: draughty +A C: draftier / B: draughtier +A C: draftiest / B: draughtiest + +# dragonize (level 80) +A Z: dragonize / B: dragonise +A Z: dragonized / B: dragonised +A Z: dragonizing / B: dragonising +A Z: dragonizes / B: dragonises + +# dramatizable (level 80) +A Z: dramatizable / B: dramatisable +A Z: dramatizabler / B: dramatisabler +A Z: dramatizables / B: dramatisables +A Z: dramatizablest / B: dramatisablest +A Z: dramatizable's / B: dramatisable's + +# dramatization (level 35) +A Z: dramatization / B: dramatisation +A Z: dramatizations / B: dramatisations +A Z: dramatization's / B: dramatisation's + +# dramatize (level 35) +A Z: dramatize / B: dramatise +A Z: dramatized / B: dramatised +A Z: dramatizing / B: dramatising +A Z: dramatizes / B: dramatises + +# dramatizer (level 80) +A Z: dramatizer / B: dramatiser +A Z: dramatizers / B: dramatisers +A Z: dramatizer's / B: dramatiser's + +# dreamed (level 20) +A B C. Z: dreamed / B. C Zv: dreamt + +# drey (level 35) +_: drier / _V: dryer | +_: driest / _V: dryest | +_: dryer / _.: drier | + +# drivel (level 35) +A: driveled / B: drivelled +A: driveling / B: drivelling + +# driveler (level 60) +A: driveler / B: driveller +A: drivelers / B: drivellers +A: driveler's / B: driveller's + +# drought (level 35) +A B: drought / AV BV: drouth +A B: droughts / AV BV: drouthes +A B: drought's / AV BV: drouth's + +# droughtiness (level 80) +_: droughtiness / _V: drouthiness + +# droughty (level 70) +_: droughty / _V: drouthy + +# druggy (level 55) +_: druggy / _V: druggie | +_: druggie / _V: druggy | +_ _V: druggies | +_: druggie's / _V: druggy's | + +# dryly (level 35) +A Bv C: dryly / Av B Cv: drily + +# dualization (level 95) +A Z: dualization / B: dualisation +A Z: dualizations / B: dualisations +A Z: dualization's / B: dualisation's + +# dualize (level 80) +A Z: dualize / B: dualise +A Z: dualizes / B: dualises + +# ductilize (level 95) +A Z: ductilize / B: ductilise +A Z: ductilizes / B: ductilises + +# duel (level 35) +A: dueled / B: duelled +A: dueling / B: duelling +A: duelings / B: duellings + +# dueler (level 60) +A: dueler / B: dueller +A: duelers / B: duellers +A: dueler's / B: dueller's + +# duelist (level 50) +A: duelist / B: duellist +A: duelists / B: duellists +A: duelist's / B: duellist's + +# duer (level 80) +A: duer / B: dure + +# dullness (level 35) +_: dullness / _V: dulness +_: dullnesses / _V: dulnesses +_: dullness's / _V: dulness's + +# dumbfound (level 35) +_: dumbfound / _V: dumfound +_: dumbfounded / _V: dumfounded +_: dumbfounding / _V: dumfounding +_: dumbfounds / _V: dumfounds + +# dumbfoundingly (level 99) +_: dumbfoundingly / _V: dumfoundingly + +# dykey (level 80) +_: dykey / _V: dikey | lesbian +_: dykier / _V: dikier | lesbian +_: dykiest / _V: dikiest | lesbian + +# dynamize (level 80) +A Z: dynamize / B: dynamise +A Z: dynamized / B: dynamised +A Z: dynamizing / B: dynamising +A Z: dynamizes / B: dynamises + +# dysesthesia (level 80) +A Dv: dysesthesia / B D: dysaesthesia + +# dysesthetic (level 80) +A Dv: dysesthetic / B D: dysaesthetic + +# dysmenorrhea (level 80) +A Dv: dysmenorrhea / B D: dysmenorrhoea +A Dv: dysmenorrheas / B D: dysmenorrhoeas +A Dv: dysmenorrhea's / B D: dysmenorrhoea's + +# dysmenorrheal (level 80) +A Dv: dysmenorrheal / B D: dysmenorrhoeal + +# dysmenorrheic (level 80) +A Dv: dysmenorrheic / B D: dysmenorrhoeic + +# dyspnea (level 70) +A C Dv: dyspnea / B D: dyspnoea +A C Dv: dyspneas / B D: dyspnoeas +A C Dv: dyspnea's / B D: dyspnoea's + +# dyspneal (level 80) +A Dv: dyspneal / B D: dyspnoeal + +# dyspneic (level 80) +A Dv: dyspneic / B D: dyspnoeic + +# earlierize (level 80) +A Z: earlierize / B: earlierise +A Z: earlierized / B: earlierised +A Z: earlierizing / B: earlierising +A Z: earlierizes / B: earlierises + +# easternize (level 80) +A Z: easternize / B: easternise + +# ebionize (level 80) +A Z: ebionize / B: ebionise +A Z: ebionized / B: ebionised +A Z: ebionizing / B: ebionising +A Z: ebionizes / B: ebionises + +# ebonization (level 99) +A Z: ebonization / B: ebonisation + +# ebonize (level 70) +A Z: ebonize / B: ebonise +A Z: ebonized / B: ebonised +A Z: ebonizing / B: ebonising +A Z: ebonizes / B: ebonises + +# ec (level 95) +A: ec / B: aec + +# ecclesiasticize (level 95) +A Z: ecclesiasticize / B: ecclesiasticise +A Z: ecclesiasticizes / B: ecclesiasticises + +# echoize (level 80) +A Z: echoize / B: echoise +A Z: echoized / B: echoised +A Z: echoizing / B: echoising +A Z: echoizes / B: echoises + +# eclecticize (level 95) +A Z: eclecticize / B: eclecticise +A Z: eclecticizes / B: eclecticises + +# ecoid (level 95) +A: ecoid / B: oecoid + +# economization (level 70) +A Z: economization / B: economisation +A Z: economizations / B: economisations +A Z: economization's / B: economisation's + +# economize (level 35) +A Z: economize / B: economise +A Z: economized / B: economised +A Z: economizing / B: economising +A Z: economizes / B: economises + +# economizer (level 60) +A Z: economizer / B: economiser +A Z: economizers / B: economisers +A Z: economizer's / B: economiser's + +# ecophobia (level 80) +A: ecophobia / B: oecophobia + +# ecstasize (level 80) +A Z: ecstasize / B: ecstasise +A Z: ecstasized / B: ecstasised +A Z: ecstasizing / B: ecstasising +A Z: ecstasizes / B: ecstasises + +# ecstaticize (level 95) +A Z: ecstaticize / B: ecstaticise +A Z: ecstaticizes / B: ecstaticises + +# ectethmoid (level 95) +A: ectethmoid / B: ectoethmoid + +# ectocelic (level 95) +A Dv: ectocelic / B D: ectocoelic + +# ecumenic (level 70) +A B: ecumenic / B-: oecumenic + +# ecumenicalism (level 70) +A B: ecumenicalism / B-: oecumenicalism + +# ecumenicity (level 70) +A B: ecumenicity / B-: oecumenicity + +# ecumenism (level 55) +A B: ecumenism / B-: oecumenism + +# ecus (level 55) +A: ecus / B: oecus + +# edema (level 50) +A C Dv: edema / B D: oedema +A C Dv: edemas / B D: oedemas +A C Dv: edema's / B D: oedema's + +# edematose (level 80) +A C Dv: edematose / B D: oedematose + +# edematous (level 70) +A C Dv: edematous / B D: oedematous + +# Edenization (level 95) +A Z: Edenization / B: Edenisation +A Z: Edenizations / B: Edenisations +A Z: Edenization's / B: Edenisation's + +# Edenize (level 95) +A Z: Edenize / B: Edenise +A Z: Edenizes / B: Edenises +A Z: Edenize's / B: Edenise's + +# edicule (level 95) +A: edicule / B: aedicule +A: edicule's / B: aedicule's + +# edile (level 70) +A B: aedile / AV: edile +A B: aediles / AV: ediles +A B: aedile's / AV: edile's + +# edility (level 95) +A: edility / B: aedility + +# editorialization (level 70) +A Z: editorialization / B: editorialisation +A Z: editorializations / B: editorialisations +A Z: editorialization's / B: editorialisation's + +# editorialize (level 50) +A Z: editorialize / B: editorialise +A Z: editorialized / B: editorialised +A Z: editorializing / B: editorialising +A Z: editorializes / B: editorialises + +# editorializer (level 70) +A Z: editorializer / B: editorialiser +A Z: editorializer's / B: editorialiser's + +# eerie (level 35) +_: eerie / _V: eery + +# Eetion (level 95) +A: Eetion / B: Eaetion +A: Eetion's / B: Eaetion's + +# effectualize (level 95) +A Z: effectualize / B: effectualise +A Z: effectualizes / B: effectualises + +# effeminatize (level 95) +A Z: effeminatize / B: effeminatise +A Z: effeminatizes / B: effeminatises + +# effeminization (level 95) +A Z: effeminization / B: effeminisation +A Z: effeminization's / B: effeminisation's + +# effeminize (level 70) +A Z: effeminize / B: effeminise +A Z: effeminized / B: effeminised +A Z: effeminizing / B: effeminising +A Z: effeminizes / B: effeminises + +# eger (level 80) +A: eger / B: aeger +A: eger / B: egre + +# egilops (level 95) +A: egilops / B: aegilops + +# eglogue (level 80) +A: eglogue / B: aeglogue + +# egoize (level 95) +A Z: egoize / B: egoise +A Z: egoizes / B: egoises + +# egoizer (level 95) +A Z: egoizer / B: egoiser +A Z: egoizers / B: egoisers + +# egophony (level 95) +A: egophony / B: aegophony + +# egotize (level 70) +A Z: egotize / B: egotise +A Z: egotized / B: egotised +A Z: egotizing / B: egotising +A Z: egotizes / B: egotises + +# egritude (level 95) +A: egritude / B: aegritude + +# Egyptianization (level 95) +A Z: Egyptianization / B: Egyptianisation +A Z: Egyptianizations / B: Egyptianisations +A Z: Egyptianization's / B: Egyptianisation's + +# Egyptianize (level 95) +A Z: Egyptianize / B: Egyptianise +A Z: Egyptianized / B: Egyptianised +A Z: Egyptianized's / B: Egyptianised's +A Z: Egyptianizing / B: Egyptianising +A Z: Egyptianizes / B: Egyptianises +A Z: Egyptianize's / B: Egyptianise's +A Z: Egyptianizing's / B: Egyptianising's + +# Egyptize (level 95) +A Z: Egyptize / B: Egyptise +A Z: Egyptizes / B: Egyptises +A Z: Egyptize's / B: Egyptise's + +# elasticization (level 99) +A Z: elasticization / B: elasticisation + +# elasticize (level 55) +A Z: elasticize / B: elasticise +A Z: elasticized / B: elasticised +A Z: elasticizing / B: elasticising +A Z: elasticizes / B: elasticises + +# elasticizer (level 95) +A Z: elasticizer / B: elasticiser +A Z: elasticizers / B: elasticisers + +# electricalize (level 95) +A Z: electricalize / B: electricalise +A Z: electricalizes / B: electricalises + +# electricize (level 95) +A Z: electricize / B: electricise +A Z: electricizes / B: electricises + +# electrization (level 80) +A Z: electrization / B: electrisation +A Z: electrizations / B: electrisations + +# electrize (level 80) +A Z: electrize / B: electrise +A Z: electrized / B: electrised +A Z: electrizing / B: electrising +A Z: electrizes / B: electrises + +# electroanesthesia (level 95) +A: electroanesthesia / B: electroanaesthesia +A: electroanesthesias / B: electroanaesthesias +A: electroanesthesia's / B: electroanaesthesia's + +# electrocauterization (level 95) +A Z: electrocauterization / B: electrocauterisation +A Z: electrocauterizations / B: electrocauterisations +A Z: electrocauterization's / B: electrocauterisation's + +# electrodialyze (level 80) +A: electrodialyze / B: electrodialyse +A: electrodialyzes / B: electrodialyses + +# electrodialyzer (level 95) +A: electrodialyzer / B: electrodialyser +A: electrodialyzers / B: electrodialysers +A: electrodialyzer's / B: electrodialyser's + +# electrogalvanize (level 95) +A Z: electrogalvanize / B: electrogalvanise +A Z: electrogalvanizes / B: electrogalvanises + +# electrohomeopathy (level 95) +A B: electrohomeopathy / Bv: electrohomoeopathy +A B: electrohomeopathies / Bv: electrohomoeopathies +A B: electrohomeopathy's / Bv: electrohomoeopathy's + +# electrolyzation (level 95) +A Z: electrolyzation / B: electrolysation +A Z: electrolyzation's / B: electrolysation's + +# electrolyze (level 70) +A: electrolyze / B: electrolyse +A: electrolyzed / B: electrolysed +A: electrolyzing / B: electrolysing +A: electrolyzes / B: electrolyses + +# electrolyzer (level 95) +A Z: electrolyzer / B: electrolyser +A Z: electrolyzer's / B: electrolyser's + +# electromagnetizable (level 99) +A Z: electromagnetizable / B: electromagnetisable + +# electrotonize (level 95) +A Z: electrotonize / B: electrotonise +A Z: electrotonizes / B: electrotonises + +# elegize (level 70) +A Z: elegize / B: elegise +A Z: elegized / B: elegised +A Z: elegizing / B: elegising +A Z: elegizes / B: elegises + +# elementalize (level 95) +A Z: elementalize / B: elementalise +A Z: elementalizes / B: elementalises + +# eleoblast (level 95) +A: eleoblast / B: elaeoblast + +# eleolite (level 80) +A: eleolite / B: elaeolite + +# eleomargaric (level 95) +A: eleomargaric / B: elaeomargaric + +# eleometer (level 95) +A: eleometer / B: elaeometer + +# eleoptene (level 70) +A: eleoptene / B: elaeoptene +A: eleoptene's / B: elaeoptene's + +# Elizabethanize (level 95) +A Z: Elizabethanize / B: Elizabethanise +A Z: Elizabethanizes / B: Elizabethanises +A Z: Elizabethanize's / B: Elizabethanise's + +# Elizabethville (level 70) +A Z: Elizabethville / B: Elisabethville +A Z: Elizabethville's / B: Elisabethville's + +# embed (level 20) +A B: embed / AV Bv: imbed | +A B: embedded / AV Bv: imbedded | +A B: embedding / AV Bv: imbedding | +A B: embeds / AV Bv: imbeds | +A B: embed | (-) journalist +A B: embeds | (-) journalist +A B: embed's | (-) journalist + +# embedment (level 70) +A B: embedment / AV: imbedment +A B: embedments / AV: imbedments + +# emblematicize (level 95) +A Z: emblematicize / B: emblematicise +A Z: emblematicizes / B: emblematicises + +# emblematization (level 99) +A Z: emblematization / B: emblematisation + +# emblematize (level 70) +A Z: emblematize / B: emblematise +A Z: emblematized / B: emblematised +A Z: emblematizing / B: emblematising +A Z: emblematizes / B: emblematises + +# emblemize (level 80) +A Z: emblemize / B: emblemise +A Z: emblemized / B: emblemised +A Z: emblemizing / B: emblemising +A Z: emblemizes / B: emblemises + +# embolization (level 80) +A Z: embolization / B: embolisation + +# embowel (level 80) +A: emboweled / B: embowelled +A: emboweling / B: embowelling + +# emir (level 35) +_: emir / _v: amir / _V: ameer +_: emirs / _v: amirs / _V: ameers +_: emir's / _v: amir's / _V: ameer's + +# emotionalization (level 80) +A Z: emotionalization / B: emotionalisation +A Z: emotionalizations / B: emotionalisations +A Z: emotionalization's / B: emotionalisation's + +# emotionalize (level 60) +A Z: emotionalize / B: emotionalise +A Z: emotionalized / B: emotionalised +A Z: emotionalizing / B: emotionalising +A Z: emotionalizes / B: emotionalises + +# emotionize (level 95) +A Z: emotionize / B: emotionise +A Z: emotionizes / B: emotionises + +# empathize (level 40) +A Z: empathize / B: empathise +A Z: empathized / B: empathised +A Z: empathizing / B: empathising +A Z: empathizes / B: empathises + +# emperize (level 80) +A Z: emperize / B: emperise +A Z: emperized / B: emperised +A Z: emperizing / B: emperising +A Z: emperizes / B: emperises + +# empestic (level 80) +A Dv: empestic / B D: empaestic + +# emphasize (level 20) +A Z: emphasize / B: emphasise +A Z: emphasized / B: emphasised +A Z: emphasizing / B: emphasising +A Z: emphasizes / B: emphasises + +# emphasizer (level 99) +A Z: emphasizer / B: emphasiser +A Z: emphasizers / B: emphasisers + +# employee (level 10) +A B: employee / AV: employe +A B: employees / AV: employes +A B: employee's / AV: employe's + +# emprise (level 70) +_: emprise / _-: emprize +_: emprises / _-: emprizes + +# empyreumatize (level 80) +A Z: empyreumatize / B: empyreumatise +A Z: empyreumatized / B: empyreumatised +A Z: empyreumatizing / B: empyreumatising +A Z: empyreumatizes / B: empyreumatises + +# emule (level 80) +A: emule / B: aemule +A: emuled / B: aemuled +A: emuling / B: aemuling +A: emules / B: aemules + +# emulsionize (level 80) +A Z: emulsionize / B: emulsionise +A Z: emulsionized / B: emulsionised +A Z: emulsionizing / B: emulsionising +A Z: emulsionizes / B: emulsionises + +# enamel (level 35) +A Cv: enameled / B C: enamelled +A Cv: enameling / B C: enamelling +A Cv: enamelings / B C: enamellings + +# enameler (level 60) +A: enameler / B: enameller +A: enamelers / B: enamellers +A: enameler's / B: enameller's + +# enamelist (level 80) +A: enamelist / B: enamellist +A: enamelists / B: enamellists +A: enamelist's / B: enamellist's + +# enamor (level 40) +A Cv DV: enamor / B C D: enamour +A Cv DV: enamored / B C D: enamoured +A Cv DV: enamor's / B C D: enamour's +A Cv DV: enamoreds / B C D: enamoureds +A Cv DV: enamored's / B C D: enamoured's +A Cv DV: enamoring / B C D: enamouring +A Cv DV: enamors / B C D: enamours + +# enamoredness (level 95) +A Cv DV: enamoredness / B C D: enamouredness +A Cv DV: enamorednesses / B C D: enamourednesses +A Cv DV: enamoredness's / B C D: enamouredness's + +# enamorment (level 95) +A Cv DV: enamorment / B C D: enamourment +A Cv DV: enamorments / B C D: enamourments +A Cv DV: enamorment's / B C D: enamourment's + +# enarbor (level 95) +A: enarbor / B: enarbour +A: enarbors / B: enarbours +A: enarbor's / B: enarbour's + +# encarnalization (level 99) +A Z: encarnalization / B: encarnalisation + +# encarnalize (level 70) +A Z: encarnalize / B: encarnalise +A Z: encarnalized / B: encarnalised +A Z: encarnalizing / B: encarnalising +A Z: encarnalizes / B: encarnalises + +# encephalocele (level 80) +A: encephalocele / B: encephalocoele + +# enclose (level 20) +A B: enclose / AV: inclose +A B: enclosed / AV: inclosed +A B: enclosing / AV: inclosing +A B: encloses / AV: incloses + +# enclosure (level 35) +_: enclosure / _V: inclosure +_: enclosures / _V: inclosures +_: enclosure's / _V: inclosure's + +# encolor (level 80) +A Cv DV: encolor / B C D: encolour +A Cv DV: encolored / B C D: encoloured +A Cv DV: encoloring / B C D: encolouring +A Cv DV: encolors / B C D: encolours +A Cv DV: encolor's / B C D: encolour's + +# encrust (level 50) +_: encrust / _V: incrust +_: encrusted / _V: incrusted +_: encrusting / _V: incrusting +_: encrusts / _V: incrusts + +# encumber (level 35) +_: encumber / _-: incumber +_: encumbered / _-: incumbered +_: encumbering / _-: incumbering +_: encumbers / _-: incumbers + +# encyclopedia (level 35) +A B C D: encyclopedia / AV B. Cv Dv: encyclopaedia +A B C D: encyclopedias / AV B. Cv Dv: encyclopaedias +A B C D: encyclopedia's / AV B. Cv Dv: encyclopaedia's +## ODE has encyclopEdia first, OED has encyclopAEdia first. Many +## British will prefer the AE spelling. In the BNC the AE form is +## slightly more common (around 6:5 ratio). Thus I'm not sure how to +## encode this. + +# encyclopediac (level 95) +A B C D: encyclopediac / AV B. Cv Dv: encyclopaediac +## See note for encyclopedia + +# encyclopedial (level 95) +A B C D: encyclopedial / AV B. Cv Dv: encyclopaedial +## See note for encyclopedia + +# encyclopedian (level 80) +A B C D: encyclopedian / AV B. Cv Dv: encyclopaedian +## See note for encyclopedia + +# encyclopedic (level 50) +A B C D: encyclopedic / AV B. Cv Dv: encyclopaedic +## See note for encyclopedia + +# encyclopedical (level 80) +A B C D: encyclopedical / AV B. Cv Dv: encyclopaedical +## See note for encyclopedia + +# encyclopedically (level 70) +A B C D: encyclopedically / AV B. Cv Dv: encyclopaedically +## See note for encyclopedia + +# encyclopedism (level 80) +A B C D: encyclopedism / AV B. Cv Dv: encyclopaedism +A B C D: encyclopedisms / AV B. Cv Dv: encyclopaedisms +## See note for encyclopedia + +# encyclopedist (level 70) +A B C D: encyclopedist / AV B. Cv Dv: encyclopaedist +A B C D: encyclopedists / AV B. Cv Dv: encyclopaedists +## See note for encyclopedia + +# endameba (level 70) +A: endameba / B: endamoeba +A: endamebas / B: endamoebas +A: endamebae / B: endamoebae + +# endamebiasis (level 95) +A: endamebiasis / B: endamoebiasis + +# endamebic (level 95) +A: endamebic / B: endamoebic + +# endeavor (level 20) +A Cv DV: endeavor / B C D: endeavour +A Cv DV: endeavored / B C D: endeavoured +A Cv DV: endeavoring / B C D: endeavouring +A Cv DV: endeavors / B C D: endeavours +A Cv DV: endeavor's / B C D: endeavour's + +# endeavorer (level 80) +A Cv DV: endeavorer / B C D: endeavourer +A Cv DV: endeavorers / B C D: endeavourers +A Cv DV: endeavorer's / B C D: endeavourer's + +# Enders (level 80) +A: Enders / B: Endres + +# endorse (level 35) +_: endorse / _V: indorse +_: endorsed / _V: indorsed +_: endorsing / _V: indorsing +_: endorses / _V: indorses + +# endorsement (level 35) +_: endorsement / _V: indorsement +_: endorsements / _V: indorsements +_: endorsement's / _V: indorsement's + +# endue (level 50) +_: endue / _v: indue +_: endued / _v: indued +_: enduing / _v: induing +_: endues / _v: indues + +# eneid (level 95) +A: eneid / B: aeneid + +# energization (level 80) +A Z: energization / B: energisation + +# energize (level 40) +A Z: energize / B: energise +A Z: energized / B: energised +A Z: energizing / B: energising +A Z: energizes / B: energises + +# energizer (level 50) +A Z: energizer / B: energiser +A Z: energizers / B: energisers +A Z: energizer's / B: energiser's + +# Englishize (level 95) +A Z: Englishize / B: Englishise +A Z: Englishizes / B: Englishises +A Z: Englishize's / B: Englishise's + +# engrandize (level 95) +A Z: engrandize / B: engrandise +A Z: engrandizes / B: engrandises + +# engrandizement (level 95) +A Z: engrandizement / B: engrandisement +A Z: engrandizements / B: engrandisements +A Z: engrandizement's / B: engrandisement's + +# enharbor (level 95) +A: enharbor / B: enharbour + +# enhemospore (level 95) +A: enhemospore / B: enhaemospore + +# enhypostatize (level 80) +A Z: enhypostatize / B: enhypostatise +A Z: enhypostatized / B: enhypostatised +A Z: enhypostatizing / B: enhypostatising +A Z: enhypostatizes / B: enhypostatises + +# enigmatize (level 80) +A Z: enigmatize / B: enigmatise +A Z: enigmatized / B: enigmatised +A Z: enigmatizing / B: enigmatising +A Z: enigmatizes / B: enigmatises + +# enjambment (level 60) +_: enjambment / _V: enjambement +_: enjambments / _V: enjambements +_: enjambment's / _V: enjambement's + +# enocyte (level 95) +A: enocyte / B: oenocyte + +# enolic (level 80) +A: enolic / B: oenolic + +# enolization (level 95) +A Z: enolization / B: enolisation +A Z: enolizations / B: enolisations +A Z: enolization's / B: enolisation's + +# enolize (level 95) +A Z: enolize / B: enolise +A Z: enolizes / B: enolises + +# enological (level 80) +A: enological / B: oenological + +# enologist (level 70) +A: enologist / B: oenologist +A: enologists / B: oenologists + +# enomania (level 80) +A: enomania / B: oenomania + +# enroll (level 35) +A Cv DV: enroll / B C D: enrol +A Cv DV: enrolls / B C D: enrols + +# enrollment (level 35) +A Cv DV: enrollment / B C D: enrolment +A Cv DV: enrollments / B C D: enrolments +A Cv DV: enrollment's / B C D: enrolment's + +# ensepulcher (level 70) +A: ensepulcher / B: ensepulchre +A: ensepulcherred / B: ensepulchred +A: ensepulcherring / B: ensepulchring +A: ensepulchers / B: ensepulchres +A: ensepulcher's / B: ensepulchre's + +# ensorcel (level 80) +A: ensorceled / B: ensorcelled +A: ensorcels / B: ensorcells + +# entameba (level 80) +A: entameba / B: entamoeba +A: entamebas / B: entamoebas + +# entamebae (level 80) +A: entamebae / B: entamoebae + +# entamebic (level 95) +A: entamebic / B: entamoebic + +# entender (level 80) +A: entender / B: entendre +A: entenders / B: entendres + +# enterocele (level 80) +A: enterocele / B: enterocoele +A: enteroceles / B: enterocoeles + +# enthrall (level 35) +A C: enthrall / B Cv: enthral +A B C Cv: enthralling +A B C Cv: enthralled +A C: enthralls / B Cv: enthrals +A C: enthrall / B Cv: enthral / Bv: inthrall | (-) enslave +A B: enthralling / Bv: inthralling | (-) enslave +A B: enthralled / Bv: inthralled | (-) enslave +A C: enthralls / B Cv: enthrals / Bv: inthralls | (-) enslave + +# enthrallment (level 60) +A C: enthrallment / B Cv: enthralment +A C: enthrallments / B Cv: enthralments +A C: enthrallment's / B Cv: enthralment's + +# enthronization (level 80) +A Z: enthronization / B: enthronisation +A Z: enthronizations / B: enthronisations +A Z: enthronization's / B: enthronisation's + +# enthronize (level 80) +A Z: enthronize / B: enthronise +A Z: enthronized / B: enthronised +A Z: enthronizing / B: enthronising +A Z: enthronizes / B: enthronises + +# entocele (level 95) +A: entocele / B: entocoele + +# entomologize (level 70) +A Z: entomologize / B: entomologise +A Z: entomologized / B: entomologised +A Z: entomologizing / B: entomologising +A Z: entomologizes / B: entomologises + +# entre (level 95) +A: entre / B: entrae + +# entrench (level 35) +_: entrench / _V: intrench +_: entrenched / _V: intrenched +_: entrenching / _V: intrenching +_: entrenches / _V: intrenches + +# entrenchment (level 50) +_: entrenchment / _V: intrenchment +_: entrenchment's / _V: intrenchment's +_: entrenchments / _V: intrenchments + +# entrust (level 35) +_: entrust / _V: intrust +_: entrusted / _V: intrusted +_: entrusting / _V: intrusting +_: entrusts / _V: intrusts + +# entrustment (level 80) +_: entrustment / _V: intrustment +_: entrustments / _V: intrustments + +# envapor (level 95) +A DV: envapor / B D: envapour +A DV: envapors / B D: envapours +A DV: envapor's / B D: envapour's + +# envenomization (level 80) +A Z: envenomization / B: envenomisation + +# eolic (level 95) +A: eolic / B: aeolic + +# eolipile (level 70) +A: eolipile / B: aeolipile +A: eolipiles / B: aeolipiles +A: eolipile's / B: aeolipile's + +# eolotropic (level 70) +A: eolotropic / B: aeolotropic + +# eon (level 35) +A BV C Dv: eon / Av B Cv D: aeon +A BV C Dv: eons / Av B Cv D: aeons +A BV C Dv: eon's / Av B Cv D: aeon's +A B: eon | (-) technical +A B: eons | (-) technical +A B: eon's | (-) technical + +# eonian (level 70) +A: eonian / B: aeonian + +# eonism (level 70) +A: eonism / B: aeonism +A: eonisms / B: aeonisms +A: eonism's / B: aeonism's + +# Eopaleozoic (level 95) +A: Eopaleozoic / B: Eopalaeozoic +A: Eopaleozoic's / B: Eopalaeozoic's + +# epaulet (level 35) +A Cv: epaulet / AV B C: epaulette +A Cv: epaulets / AV B C: epaulettes +A Cv: epaulet's / AV B C: epaulette's + +# epenetic (level 80) +A: epenetic / B: epaenetic + +# ephete (level 95) +A: ephete / B: ephetae + +# epicele (level 95) +A: epicele / B: epicoele + +# epicenter (level 40) +A: epicenter / B: epicentre +A: epicenters / B: epicentres +A: epicenter's / B: epicentre's + +# Epicurize (level 80) +A Z: Epicurize / B: Epicurise +A Z: Epicurizes / B: Epicurises +A Z: Epicurize's / B: Epicurise's +A Z: epicurize / B: epicurise +A Z: epicurized / B: epicurised +A Z: epicurizing / B: epicurising +A Z: epicurizes / B: epicurises + +# epidotization (level 80) +A Z: epidotization / B: epidotisation +A Z: epidotizations / B: epidotisations + +# epidotized (level 80) +A Z: epidotized / B: epidotised + +# epigeal (level 70) +A: epigeal / B: epigaeal + +# epigean (level 80) +A: epigean / B: epigaean + +# epigeous (level 70) +A: epigeous / B: epigaeous + +# epigrammatization (level 99) +A Z: epigrammatization / B: epigrammatisation + +# epigrammatize (level 70) +A Z: epigrammatize / B: epigrammatise +A Z: epigrammatized / B: epigrammatised +A Z: epigrammatizing / B: epigrammatising +A Z: epigrammatizes / B: epigrammatises + +# epigrammatizer (level 80) +A Z: epigrammatizer / B: epigrammatiser + +# epilogize (level 80) +A Z: epilogize / B: epilogise +A Z: epilogized / B: epilogised +A Z: epilogizing / B: epilogising +A Z: epilogizes / B: epilogises + +# epilogue (level 35) +A B: epilogue / AV: epilog +A B: epilogues / AV: epilogs +A B: epilogue's / AV: epilog's + +# epiloguize (level 80) +A Z: epiloguize / B: epiloguise +A Z: epiloguized / B: epiloguised +A Z: epiloguizing / B: epiloguising +A Z: epiloguizes / B: epiloguises + +# epimerize (level 95) +A Z: epimerize / B: epimerise + +# epimerized (level 95) +A Z: epimerized / B: epimerised + +# epimerizing (level 95) +A Z: epimerizing / B: epimerising + +# epinephrine (level 60) +_: epinephrine / _V: epinephrin +_: epinephrines / _V: epinephrins +_: epinephrine's / _V: epinephrin's + +# epiphanize (level 95) +A Z: epiphanize / B: epiphanise + +# epiphanized (level 95) +A Z: epiphanized / B: epiphanised + +# epiphanizing (level 95) +A Z: epiphanizing / B: epiphanising + +# Episcopalianize (level 95) +A Z: Episcopalianize / B: Episcopalianise +A Z: Episcopalianizes / B: Episcopalianises +A Z: Episcopalianize's / B: Episcopalianise's + +# episcopize (level 80) +A Z: episcopize / B: episcopise +A Z: episcopized / B: episcopised +A Z: episcopizing / B: episcopising +A Z: episcopizes / B: episcopises + +# epistolize (level 80) +A Z: epistolize / B: epistolise +A Z: epistolized / B: epistolised +A Z: epistolizing / B: epistolising +A Z: epistolizes / B: epistolises + +# epitaphize (level 95) +A Z: epitaphize / B: epitaphise +A Z: epitaphizes / B: epitaphises + +# epithetize (level 95) +A Z: epithetize / B: epithetise +A Z: epithetizes / B: epithetises + +# epitomization (level 80) +A Z: epitomization / B: epitomisation +A Z: epitomizations / B: epitomisations +A Z: epitomization's / B: epitomisation's + +# epitomize (level 40) +A Z: epitomize / B: epitomise +A Z: epitomized / B: epitomised +A Z: epitomizing / B: epitomising +A Z: epitomizes / B: epitomises + +# epitomizer (level 80) +A Z: epitomizer / B: epitomiser +A Z: epitomizers / B: epitomisers +A Z: epitomizer's / B: epitomiser's + +# eq (level 70) +A: eq / B: aeq + +# equal (level 35) +A: equaled / B: equalled +A: equaling / B: equalling + +# equalization (level 50) +A Z: equalization / B: equalisation +A Z: equalizations / B: equalisations +A Z: equalization's / B: equalisation's + +# equalize (level 35) +A Z: equalize / B: equalise +A Z: equalized / B: equalised +A Z: equalizing / B: equalising +A Z: equalizes / B: equalises +A Z: equalizings / B: equalisings + +# equalizer (level 50) +A Z: equalizer / B: equaliser +A Z: equalizers / B: equalisers +A Z: equalizer's / B: equaliser's + +# equestrianize (level 95) +A Z: equestrianize / B: equestrianise +A Z: equestrianizes / B: equestrianises + +# erbia (level 80) +A: erbia / B: rebia +A: erbias / B: rebias + +# ergotize (level 80) +A Z: ergotize / B: ergotise +A Z: ergotized / B: ergotised +A Z: ergotizing / B: ergotising +A Z: ergotizes / B: ergotises + +# erical (level 95) +A: erical / B: aerical + +# erke (level 95) +A: erke / B: reke + +# ern (level 70) +A: ern / B: ren +A: ernes / B: renes +A: erns / B: rens + +# ernest (level 80) +A: ernest / B: renest + +# erogenesis (level 95) +A: erogenesis / B: aerogenesis + +# erogenic (level 70) +A: erogenic / B: aerogenic + +# eros (level 70) +A: eros / B: aeros +A: erose / B: aerose + +# eroticization (level 80) +A Z: eroticization / B: eroticisation + +# eroticize (level 80) +A Z: eroticize / B: eroticise +A Z: eroticized / B: eroticised +A Z: eroticizing / B: eroticising +A Z: eroticizes / B: eroticises + +# erses (level 80) +A: erses / B: reses + +# ersh (level 70) +A: ersh / B: resh +A: reshes / B: reshoes + +# ert (level 70) +A: ert / B: ret + +# eruginous (level 80) +A: eruginous / B: aeruginous + +# erugo (level 70) +A: erugo / B: aerugo +A: erugos / B: aerugos + +# ervalenta (level 80) +A: ervalenta / B: revalenta +A: ervalentas / B: revalentas + +# erythrean (level 95) +A: erythrean / B: erythraean + +# erythremia (level 80) +A: erythremia / B: erythraemia + +# esc (level 80) +A: esc / B: aesc + +# escalades (level 70) +A: escalades / B: escaladoes + +# escalope (level 55) +_: escalope / _V: escollope / _-: escalop +_: escalopes / _V: escollopes / _-: escalops +_: escalope's / _V: escollope's / _-: escalop's + +# eschynite (level 95) +A: eschynite / B: aeschynite + +# esculapian (level 95) +A: esculapian / B: aesculapian + +# esculetin (level 95) +A: esculetin / B: aesculetin + +# esculin (level 80) +A: esculin / B: aesculin +A: esculin's / B: aesculin's + +# Eskimoized (level 95) +A Z: Eskimoized / B: Eskimoised +A Z: Eskimoizeds / B: Eskimoiseds +A Z: Eskimoized's / B: Eskimoised's + +# esop (level 95) +A Dv: esop / B D: aesop + +# esophagal (level 95) +A Dv: esophagal / B D: oesophagal + +# esophagean (level 95) +A Dv: esophagean / B D: oesophagean + +# esophagism (level 95) +A Dv: esophagism / B D: oesophagism + +# esophagismus (level 95) +A Dv: esophagismus / B D: oesophagismus + +# esophagitis (level 70) +A Dv: esophagitis / B D: oesophagitis + +# esophagus (level 35) +A Dv: esophagus / B D: oesophagus +A C Dv: esophagi / Av Cv: esophaguses / B D: oesophagi / Bv: oesophaguses + +# Essenize (level 95) +A Z: Essenize / B: Essenise +A Z: Essenizes / B: Essenises +A Z: Essenize's / B: Essenise's + +# essentialize (level 70) +A Z: essentialize / B: essentialise +A Z: essentializes / B: essentialises + +# esterization (level 95) +A Z: esterization / B: esterisation +A Z: esterizations / B: esterisations +A Z: esterization's / B: esterisation's + +# esterize (level 95) +A Z: esterize / B: esterise +A Z: esterizes / B: esterises + +# esthesia (level 70) +A: esthesia / B: aesthesia +A: esthesias / B: aesthesias +A: esthesia's / B: aesthesia's + +# esthesiogen (level 80) +A: esthesiogen / B: aesthesiogen +A: esthesiogens / B: aesthesiogens + +# esthesiogenic (level 80) +A: esthesiogenic / B: aesthesiogenic + +# esthesis (level 80) +A: esthesis / B: aesthesis +A: estheses / B: aestheses + +# esthetic (level 20) +A B C D: aesthetic / Av Cv Dv: esthetic +A B C D: aesthetic's / Av Cv Dv: esthetic's +A B C D: aesthetics / Av Cv Dv: esthetics + +# esthetical (level 80) +A: esthetical / B: aesthetical + +# esthetically (level 20) +A B: aesthetically / A-: esthetically + +# esthetician (level 70) +A Cv: esthetician / B C: aesthetician +A Cv: estheticians / B C: aestheticians +A Cv: esthetician's / B C: aesthetician's + +# estival (level 70) +A Cv: estival / AV B C: aestival + +# estivate (level 70) +A Cv: estivate / B C: aestivate +A Cv: estivated / B C: aestivated +A Cv: estivating / B C: aestivating +A Cv: estivates / B C: aestivates + +# estivation (level 70) +A Cv: estivation / B C: aestivation +A Cv: estivations / B C: aestivations +A Cv: estivation's / B C: aestivation's + +# estivator (level 95) +A: estivator / B: aestivator +A: estivator's / B: aestivator's + +# estive (level 95) +A: estive / B: aestive + +# estradiol (level 70) +A: estradiol / B: oestradiol +A: estradiols / B: oestradiols +A: estradiol's / B: oestradiol's + +# estral (level 80) +A: estral / B: oestral + +# estrin (level 70) +A: estrin / B: oestrin +A: estrins / B: oestrins +A: estrin's / B: oestrin's + +# estriol (level 70) +A: estriol / B: oestriol +A: estriols / B: oestriols +A: estriol's / B: oestriol's + +# estrogen (level 40) +A C Dv: estrogen / B D: oestrogen +A C Dv: estrogens / B D: oestrogens +A C Dv: estrogen's / B D: oestrogen's + +# estrogenic (level 70) +A C Dv: estrogenic / B D: oestrogenic + +# estrone (level 70) +A: estrone / B: oestrone +A: estrones / B: oestrones +A: estrone's / B: oestrone's + +# estrous (level 60) +A C: estrous / B: oestrous + +# estrual (level 80) +A: estrual / B: oestrual + +# estruate (level 95) +A: estruate / B: oestruate + +# estruation (level 95) +A: estruation / B: oestruation + +# estrum (level 70) +A: estrum / B: oestrum +A: estrums / B: oestrums + +# estrus (level 60) +A C: estrus / B: oestrus +A C: estruses / B: oestruses +A C: estrus's / B: oestrus's + +# estuate (level 95) +A: estuate / B: aestuate + +# estuous (level 95) +A: estuous / B: aestuous + +# esture (level 95) +A: esture / B: aesture + +# estus (level 95) +A: estus / B: aestus + +# et (level 70) +A: et / B: aet + +# eternalization (level 80) +A Z: eternalization / B: eternalisation +A Z: eternalizations / B: eternalisations +A Z: eternalization's / B: eternalisation's + +# eternalize (level 70) +A Z: eternalize / B: eternalise +A Z: eternalized / B: eternalised +A Z: eternalizing / B: eternalising +A Z: eternalizes / B: eternalises + +# eternization (level 80) +A Z: eternization / B: eternisation +A Z: eternizations / B: eternisations +A Z: eternization's / B: eternisation's + +# eternize (level 70) +A Z: eternize / B: eternise +A Z: eternized / B: eternised +A Z: eternizing / B: eternising +A Z: eternizes / B: eternises + +# etheling (level 95) +A: etheling / B: aetheling + +# etherealization (level 80) +A Z: etherealization / B: etherealisation +A Z: etherealizations / B: etherealisations +A Z: etherealization's / B: etherealisation's + +# etherealize (level 70) +A Z: etherealize / B: etherealise +A Z: etherealized / B: etherealised +A Z: etherealizing / B: etherealising +A Z: etherealizes / B: etherealises + +# ethered (level 95) +A: ethered / B: aethered + +# etherialization (level 95) +A Z: etherialization / B: etherialisation +A Z: etherialization's / B: etherialisation's + +# etherialize (level 95) +A Z: etherialize / B: etherialise + +# etherialized (level 95) +A Z: etherialized / B: etherialised + +# etherializing (level 95) +A Z: etherializing / B: etherialising + +# etheric (level 80) +A: etheric / B: aetheric + +# etherization (level 80) +A Z: etherization / B: etherisation +A Z: etherizations / B: etherisations +A Z: etherization's / B: etherisation's + +# etherize (level 70) +A Z: etherize / B: etherise +A Z: etherized / B: etherised +A Z: etherizing / B: etherising +A Z: etherizes / B: etherises + +# etherizer (level 80) +A Z: etherizer / B: etheriser +A Z: etherizers / B: etherisers +A Z: etherizer's / B: etheriser's + +# ethicization (level 99) +A Z: ethicization / B: ethicisation + +# ethicize (level 70) +A Z: ethicize / B: ethicise +A Z: ethicized / B: ethicised +A Z: ethicizing / B: ethicising +A Z: ethicizes / B: ethicises + +# ethnicize (level 95) +A Z: ethnicize / B: ethnicise +A Z: ethnicizes / B: ethnicises + +# etiogenic (level 95) +A Dv: etiogenic / B D: aetiogenic + +# etiologically (level 70) +A C Dv: etiologically / B D: aetiologically + +# etiologist (level 70) +A Dv: etiologist / B D: aetiologist +A Dv: etiologist's / B D: aetiologist's + +# etiologue (level 95) +A Dv: etiologue / B D: aetiologue + +# etiology (level 50) +A C Dv: etiology / B D: aetiology +A C Dv: etiology's / B D: aetiology's + +# etiophyllin (level 95) +A Dv: etiophyllin / B D: aetiophyllin + +# etiotropic (level 95) +A Dv: etiotropic / B D: aetiotropic + +# etiotropically (level 95) +A Dv: etiotropically / B D: aetiotropically + +# etymologizable (level 95) +A Z: etymologizable / B: etymologisable + +# etymologization (level 95) +A Z: etymologization / B: etymologisation + +# etymologize (level 70) +A Z: etymologize / B: etymologise +A Z: etymologized / B: etymologised +A Z: etymologizing / B: etymologising +A Z: etymologizes / B: etymologises + +# eudemon (level 70) +A: eudemon / B: eudaemon +A: eudemons / B: eudaemons + +# eudemonia (level 70) +A: eudemonia / B: eudaemonia + +# eudemonic (level 70) +A: eudemonic / B: eudaemonic +A: eudemonics / B: eudaemonics + +# eudemonism (level 70) +A: eudemonism / B: eudaemonism +A: eudemonisms / B: eudaemonisms + +# eudemonist (level 80) +A: eudemonist / B: eudaemonist +A: eudemonists / B: eudaemonists +A: eudemonist's / B: eudaemonist's + +# eudemonistic (level 80) +A: eudemonistic / B: eudaemonistic + +# eudemonistical (level 95) +A: eudemonistical / B: eudaemonistical + +# eudemonistically (level 95) +A: eudemonistically / B: eudaemonistically + +# eudemony (level 80) +A: eudemony / B: eudaemony + +# euhemerize (level 70) +A Z: euhemerize / B: euhemerise +A Z: euhemerized / B: euhemerised +A Z: euhemerizing / B: euhemerising +A Z: euhemerizes / B: euhemerises + +# eulogization (level 95) +A Z: eulogization / B: eulogisation +A Z: eulogizations / B: eulogisations +A Z: eulogization's / B: eulogisation's + +# eulogize (level 35) +A Z: eulogize / B: eulogise +A Z: eulogized / B: eulogised +A Z: eulogizing / B: eulogising +A Z: eulogizes / B: eulogises + +# eulogizer (level 60) +A Z: eulogizer / B: eulogiser +A Z: eulogizers / B: eulogisers +A Z: eulogizer's / B: eulogiser's + +# eunuchize (level 70) +A Z: eunuchize / B: eunuchise +A Z: eunuchized / B: eunuchised +A Z: eunuchizing / B: eunuchising +A Z: eunuchizes / B: eunuchises + +# euphemization (level 95) +A Z: euphemization / B: euphemisation +A Z: euphemization's / B: euphemisation's + +# euphemize (level 70) +A Z: euphemize / B: euphemise +A Z: euphemized / B: euphemised +A Z: euphemizing / B: euphemising +A Z: euphemizes / B: euphemises + +# euphemizer (level 80) +A Z: euphemizer / B: euphemiser +A Z: euphemizers / B: euphemisers +A Z: euphemizer's / B: euphemiser's + +# euphonization (level 99) +A Z: euphonization / B: euphonisation + +# euphonize (level 70) +A Z: euphonize / B: euphonise +A Z: euphonized / B: euphonised +A Z: euphonizing / B: euphonising +A Z: euphonizes / B: euphonises + +# euphuize (level 80) +A Z: euphuize / B: euphuise +A Z: euphuized / B: euphuised +A Z: euphuizing / B: euphuising +A Z: euphuizes / B: euphuises + +# eupnea (level 80) +A Dv: eupnea / B D: eupnoea +A Dv: eupneas / B D: eupnoeas +A Dv: eupnea's / B D: eupnoea's + +# eupneic (level 80) +A Dv: eupneic / B D: eupnoeic + +# Europeanization (level 80) +A Z: Europeanization / B: Europeanisation +A Z: Europeanizations / B: Europeanisations +A Z: Europeanization's / B: Europeanisation's + +# Europeanize (level 70) +A Z: Europeanize / B: Europeanise +A Z: Europeanized / B: Europeanised +A Z: Europeanizing / B: Europeanising +A Z: Europeanizes / B: Europeanises +A Z: europeanize / B: europeanise +A Z: europeanized / B: europeanised +A Z: europeanizing / B: europeanising +A Z: europeanizes / B: europeanises + +# Euryale (level 70) +A: Euryale / B: Euryalae +A: Euryale's / B: Euryalae's + +# evangelization (level 70) +A Z: evangelization / B: evangelisation +A Z: evangelizations / B: evangelisations +A Z: evangelization's / B: evangelisation's + +# evangelize (level 50) +A Z: evangelize / B: evangelise +A Z: evangelized / B: evangelised +A Z: evangelizing / B: evangelising +A Z: evangelizes / B: evangelises + +# evangelizer (level 70) +A Z: evangelizer / B: evangeliser +A Z: evangelizers / B: evangelisers +A Z: evangelizer's / B: evangeliser's + +# eventualize (level 80) +A Z: eventualize / B: eventualise +A Z: eventualized / B: eventualised +A Z: eventualizing / B: eventualising +A Z: eventualizes / B: eventualises + +# evil (level 35) +A: eviler / B: eviller +A: evilest / B: evillest + +# eviternal (level 80) +A: eviternal / B: aeviternal + +# evolutionize (level 95) +A Z: evolutionize / B: evolutionise +A Z: evolutionizes / B: evolutionises + +# excursionize (level 80) +A Z: excursionize / B: excursionise +A Z: excursionized / B: excursionised +A Z: excursionizing / B: excursionising +A Z: excursionizes / B: excursionises + +# exestuate (level 95) +A: exestuate / B: exaestuate + +# exhibitionize (level 95) +A Z: exhibitionize / B: exhibitionise +A Z: exhibitionizes / B: exhibitionises + +# existentialize (level 95) +A Z: existentialize / B: existentialise +A Z: existentializes / B: existentialises + +# exorcise (level 50) +A B C: exorcise / AV Cv Z: exorcize +A B C: exorcised / AV Cv Z: exorcized +A B C: exorcising / AV Cv Z: exorcizing +A B C: exorcises / AV Cv Z: exorcizes + +# exorcization (level 95) +A Z: exorcization / B: exorcisation + +# exorcizement (level 95) +A Z: exorcizement / B: exorcisement + +# exorcizer (level 80) +A Z: exorcizer / B: exorciser +A Z: exorcizers / B: exorcisers +A Z: exorcizer's / B: exorciser's + +# expediter (level 50) +_: expediter / _V: expeditor +_: expediters / _V: expeditors +_: expediter's / _V: expeditor's + +# experimentalize (level 70) +A Z: experimentalize / B: experimentalise +A Z: experimentalized / B: experimentalised +A Z: experimentalizing / B: experimentalising +A Z: experimentalizes / B: experimentalises + +# experimentize (level 95) +A Z: experimentize / B: experimentise +A Z: experimentizes / B: experimentises + +# expertize (level 80) +A Z: expertized / B: expertised +A Z: expertizing / B: expertising + +# exsiccate (level 70) +A: exsiccate / B: exsiccatae + +# extemporization (level 55) +A Z: extemporization / B: extemporisation +A Z: extemporizations / B: extemporisations +A Z: extemporization's / B: extemporisation's + +# extemporize (level 50) +A Z: extemporize / B: extemporise +A Z: extemporized / B: extemporised +A Z: extemporizing / B: extemporising +A Z: extemporizes / B: extemporises + +# extemporizer (level 80) +A Z: extemporizer / B: extemporiser +A Z: extemporizers / B: extemporisers +A Z: extemporizer's / B: extemporiser's + +# extendable (level 50) +_: extendable / _v: extendible + +# exteriorization (level 80) +A Z: exteriorization / B: exteriorisation +A Z: exteriorizations / B: exteriorisations +A Z: exteriorization's / B: exteriorisation's + +# exteriorize (level 70) +A Z: exteriorize / B: exteriorise +A Z: exteriorized / B: exteriorised +A Z: exteriorizing / B: exteriorising +A Z: exteriorizes / B: exteriorises + +# externalization (level 55) +A Z: externalization / B: externalisation +A Z: externalizations / B: externalisations +A Z: externalization's / B: externalisation's + +# externalize (level 55) +A Z: externalize / B: externalise +A Z: externalized / B: externalised +A Z: externalizing / B: externalising +A Z: externalizes / B: externalises + +# extol (level 35) +A B: extol / AV: extoll +A B: extols / AV: extolls + +# extrovert (level 35) +A B C: extrovert / AV BV: extravert +A B C: extroverted / AV BV: extraverted +A B C: extroverts / AV BV: extraverts +A B C: extrovert's / AV BV: extravert's +## extravert is marked as a "chiefly Psychology" variant + +# eying (level 35) +A B: eyeing / Av Bv: eying + +# fabulize (level 80) +A Z: fabulize / B: fabulise +A Z: fabulized / B: fabulised +A Z: fabulizing / B: fabulising +A Z: fabulizes / B: fabulises + +# facsimilize (level 95) +A Z: facsimilize / B: facsimilise +A Z: facsimilizes / B: facsimilises + +# factorization (level 35) +A Z: factorization / B: factorisation +A Z: factorizations / B: factorisations +A Z: factorization's / B: factorisation's + +# factorize (level 50) +A Z: factorize / B: factorise +A Z: factorized / B: factorised +A Z: factorizing / B: factorising +A Z: factorizes / B: factorises + +# faence (level 95) +A: faence / B: faoence +A: faence's / B: faoence's + +# faerie (level 60) +A B: faerie / AV Bv: faery +A B: faerie's / AV Bv: faery's + +# fagot (level 35) +A B: faggot +A B: faggots +A B: faggot's +A Cv: fagot / A. B C: faggot | bundle +A Cv: fagots / A. B C: faggots | bundle +A Cv: fagot's / A. B C: faggot's | bundle +A Cv: fagot / Av B C: faggot | bundle +A Cv: fagots / Av B C: faggots | bundle +A Cv: fagoted / Av B C: faggoted | bundle +A Cv: fagoting / Av B C: faggoting | bundle + +# faitor (level 70) +A: faitor / B: faitour +A: faitors / B: faitours + +# falafel (level 55) +_: falafel / _V: felafel +_: falafel's / _V: felafel's + +# familiarization (level 50) +A Z: familiarization / B: familiarisation +A Z: familiarizations / B: familiarisations +A Z: familiarization's / B: familiarisation's + +# familiarize (level 35) +A Z: familiarize / B: familiarise +A Z: familiarized / B: familiarised +A Z: familiarizing / B: familiarising +A Z: familiarizes / B: familiarises + +# familiarizer (level 80) +A Z: familiarizer / B: familiariser +A Z: familiarizers / B: familiarisers +A Z: familiarizer's / B: familiariser's + +# familiarizingly (level 95) +A Z: familiarizingly / B: familiarisingly + +# fanaticize (level 70) +A Z: fanaticize / B: fanaticise +A Z: fanaticized / B: fanaticised +A Z: fanaticizing / B: fanaticising +A Z: fanaticizes / B: fanaticises + +# fantasize (level 40) +A Z: fantasize / B: fantasise +A Z: fantasized / B: fantasised +A Z: fantasizing / B: fantasising +A Z: fantasizes / B: fantasises + +# fantasizer (level 70) +A Z: fantasizer / B: fantasiser + +# fantasy (level 20) +A B: fantasy / AV BV: phantasy +A B: fantasied / AV BV: phantasied +A B: fantasying / AV BV: phantasying +A B: fantasies / AV BV: phantasies +A B: fantasy's / AV BV: phantasy's +## phantasy marked as archaic or Psych. var. of fantasy by Ox (all versions) + +# faradization (level 80) +A Z: faradization / B: faradisation +A Z: faradizations / B: faradisations +A Z: faradization's / B: faradisation's + +# faradize (level 50) +A Z: faradize / B: faradise +A Z: faradized / B: faradised +A Z: faradizing / B: faradising +A Z: faradizes / B: faradises + +# faradizer (level 80) +A Z: faradizer / B: faradiser +A Z: faradizers / B: faradisers +A Z: faradizer's / B: faradiser's + +# fasciole (level 80) +A: fasciole / B: fasciolae + +# fascisticization (level 95) +A Z: fascisticization / B: fascisticisation +A Z: fascisticizations / B: fascisticisations +A Z: fascisticization's / B: fascisticisation's + +# fascisticize (level 95) +A Z: fascisticize / B: fascisticise +A Z: fascisticizes / B: fascisticises + +# fascistization (level 95) +A Z: fascistization / B: fascistisation +A Z: fascistizations / B: fascistisations +A Z: fascistization's / B: fascistisation's + +# fascistize (level 95) +A Z: fascistize / B: fascistise +A Z: fascistized / B: fascistised +A Z: fascistizing / B: fascistising +A Z: fascistizes / B: fascistises + +# fashionize (level 95) +A Z: fashionize / B: fashionise +A Z: fashionizes / B: fashionises + +# fatalize (level 95) +A Z: fatalize / B: fatalise +A Z: fatalizes / B: fatalises + +# favor (level 10) +A Cv DV: favor / B C D: favour +A Cv DV: favored / B C D: favoured +A Cv DV: favor's / B C D: favour's +A Cv DV: favoreds / B C D: favoureds +A Cv DV: favored's / B C D: favoured's +A Cv DV: favoring / B C D: favouring +A Cv DV: favorings / B C D: favourings +A Cv DV: favoring's / B C D: favouring's +A Cv DV: favors / B C D: favours + +# favorable (level 20) +A Cv DV: favorable / B C D: favourable +A Cv DV: favorabler / B C D: favourabler +A Cv DV: favorables / B C D: favourables +A Cv DV: favorablest / B C D: favourablest +A Cv DV: favorable's / B C D: favourable's + +# favorableness (level 70) +A Cv DV: favorableness / B C D: favourableness +A Cv DV: favorablenesses / B C D: favourablenesses +A Cv DV: favorableness's / B C D: favourableness's + +# favorably (level 35) +A Cv DV: favorably / B C D: favourably +A Cv DV: favorablier / B C D: favourablier +A Cv DV: favorabliest / B C D: favourabliest + +# favoredly (level 95) +A Cv DV: favoredly / B C D: favouredly +A Cv DV: favoredlier / B C D: favouredlier +A Cv DV: favoredliest / B C D: favouredliest + +# favoredness (level 80) +A Cv DV: favoredness / B C D: favouredness +A Cv DV: favorednesses / B C D: favourednesses +A Cv DV: favoredness's / B C D: favouredness's + +# favorer (level 70) +A Cv DV: favorer / B C D: favourer +A Cv DV: favorers / B C D: favourers +A Cv DV: favorer's / B C D: favourer's + +# favoress (level 95) +A Cv DV: favoress / B C D: favouress + +# favoringly (level 95) +A Cv DV: favoringly / B C D: favouringly +A Cv DV: favoringlier / B C D: favouringlier +A Cv DV: favoringliest / B C D: favouringliest + +# favorite (level 10) +A Cv DV: favorite / B C D: favourite +A Cv DV: favoriter / B C D: favouriter +A Cv DV: favorites / B C D: favourites +A Cv DV: favoritest / B C D: favouritest +A Cv DV: favorite's / B C D: favourite's + +# favoritism (level 35) +A Cv DV: favoritism / B C D: favouritism +A Cv DV: favoritisms / B C D: favouritisms +A Cv DV: favoritism's / B C D: favouritism's + +# favorless (level 80) +A Cv DV: favorless / B C D: favourless +A Cv DV: favorlesser / B C D: favourlesser +A Cv DV: favorlessest / B C D: favourlessest + +# favorlesses (level 99) +A Cv DV: favorlesses / B C D: favourlesses + +# fayer (level 60) +A: fayer / B: fayre + +# fe (level 80) +A: fe / B: fae + +# fecal (level 40) +A C Dv: fecal / B D: faecal + +# fecalith (level 95) +A C Dv: fecalith / B D: faecalith + +# feces (level 35) +A C Dv: feces / B Cv D: faeces +A C Dv: feces's / B Cv D: faeces's + +# fecula (level 70) +A: fecula / B: faecula + +# feculence (level 70) +A: feculence / B: faeculence + +# Fecunditatis (level 95) +A: Fecunditatis / B: Foecunditatis +A: Fecunditatis's / B: Foecunditatis's + +# fecundize (level 95) +A Z: fecundize / B: fecundise +A Z: fecundizes / B: fecundises + +# fedarie (level 80) +A: fedarie / B: foedarie +A: fedaries / B: foedaries + +# federalization (level 60) +A Z: federalization / B: federalisation +A Z: federalizations / B: federalisations +A Z: federalization's / B: federalisation's + +# federalize (level 60) +A Z: federalize / B: federalise +A Z: federalized / B: federalised +A Z: federalizing / B: federalising +A Z: federalizes / B: federalises + +# Fedor (level 95) +A: Fedor / B: Faedor +A: Fedor's / B: Faedor's + +# feer (level 70) +A: feer / B: fere +A: feers / B: feres + +# femalize (level 95) +A Z: femalize / B: femalise +A Z: femalizes / B: femalises + +# feminization (level 70) +A Z: feminization / B: feminisation +A Z: feminizations / B: feminisations +A Z: feminization's / B: feminisation's + +# feminize (level 55) +A Z: feminize / B: feminise +A Z: feminized / B: feminised +A Z: feminizing / B: feminising +A Z: feminizes / B: feminises + +# femtometer (level 95) +A: femtometer / B: femtometre + +# feralized (level 80) +A Z: feralized / B: feralised + +# ferd (level 95) +A: ferd / B: fred + +# ferie (level 80) +A: ferie / B: feriae + +# ferity (level 70) +A: ferity / B: freity + +# Ferneau (level 95) +A: Ferneau / B: Freneau +A: Ferneau's / B: Freneau's + +# ferrel (level 80) +A: ferreled / B: ferrelled +A: ferreling / B: ferrelling + +# ferritization (level 95) +A Z: ferritization / B: ferritisation +A Z: ferritizations / B: ferritisations +A Z: ferritization's / B: ferritisation's + +# fertilizability (level 95) +A Z: fertilizability / B: fertilisability +A Z: fertilizability's / B: fertilisability's + +# fertilizable (level 70) +A Z: fertilizable / B: fertilisable +A Z: fertilizabler / B: fertilisabler +A Z: fertilizables / B: fertilisables +A Z: fertilizablest / B: fertilisablest +A Z: fertilizable's / B: fertilisable's + +# fertilization (level 35) +A Z: fertilization / B: fertilisation +A Z: fertilizations / B: fertilisations +A Z: fertilization's / B: fertilisation's + +# fertilizational (level 80) +A Z: fertilizational / B: fertilisational +A Z: fertilizationaler / B: fertilisationaler +A Z: fertilizationalest / B: fertilisationalest +A Z: fertilizationals / B: fertilisationals +A Z: fertilizational's / B: fertilisational's + +# fertilize (level 35) +A Z: fertilize / B: fertilise +A Z: fertilized / B: fertilised +A Z: fertilizing / B: fertilising +A Z: fertilizes / B: fertilises + +# fertilizer (level 35) +A Z: fertilizer / B: fertiliser +A Z: fertilizers / B: fertilisers +A Z: fertilizer's / B: fertiliser's + +# fervor (level 35) +A Cv DV: fervor / B C D: fervour +A Cv DV: fervors / B C D: fervours +A Cv DV: fervor's / B C D: fervour's + +# fervorless (level 95) +A Cv DV: fervorless / B C D: fervourless + +# fervorlesses (level 99) +A Cv DV: fervorlesses / B C D: fervourlesses + +# fetal (level 35) +A B C Z: fetal / Bv ZV: foetal + +# fetalism (level 95) +A B C Z: fetalism / Bv ZV: foetalism + +# fetation (level 70) +A B C Z: fetation / Bv ZV: foetation +A B C Z: fetation's / Bv ZV: foetation's + +# fetichize (level 80) +A Z: fetichize / B: fetichise +A Z: fetichized / B: fetichised +A Z: fetichizing / B: fetichising +A Z: fetichizes / B: fetichises + +# feticidal (level 80) +A B C Z: feticidal / Bv ZV: foeticidal + +# feticide (level 70) +A B C Z: feticide / Bv ZV: foeticide +A B C Z: feticides / Bv ZV: foeticides +A B C Z: feticide's / Bv ZV: foeticide's + +# fetid (level 35) +A B C: fetid / Bv: foetid +A B C: fetider / Bv: foetider | (-) +A B C: fetidest / Bv: foetidest | (-) + +# fetiferous (level 95) +A: fetiferous / B: foetiferous + +# fetiparous (level 70) +A: fetiparous / B: foetiparous + +# fetish (level 35) +A B: fetish / AV: fetich +A B: fetishes / AV: fetiches +A B: fetish's / AV: fetich's + +# fetishization (level 95) +A Z: fetishization / B: fetishisation +A Z: fetishizations / B: fetishisations +A Z: fetishization's / B: fetishisation's + +# fetishize (level 80) +A Z: fetishize / B: fetishise +A Z: fetishized / B: fetishised +A Z: fetishizing / B: fetishising +A Z: fetishizes / B: fetishises + +# fetor (level 70) +A: fetor / B: foetor +A: fetors / B: foetors +A: fetor's / B: foetor's + +# fetoscopy (level 80) +A: fetoscopy / B: foetoscopy +A: fetoscopies / B: foetoscopies + +# feture (level 95) +A: feture / B: foeture + +# fetus (level 35) +A B C Z: fetus / Bv ZV: foetus +A B C Z: fetuses / Bv ZV: foetuses +A B C Z: fetus's / Bv ZV: foetus's +## foetus marked as British-only variant for "non-technical use" by Ox + +# feudalizable (level 95) +A Z: feudalizable / B: feudalisable +A Z: feudalizables / B: feudalisables +A Z: feudalizable's / B: feudalisable's + +# feudalization (level 70) +A Z: feudalization / B: feudalisation +A Z: feudalizations / B: feudalisations +A Z: feudalization's / B: feudalisation's + +# feudalize (level 70) +A Z: feudalize / B: feudalise +A Z: feudalized / B: feudalised +A Z: feudalizing / B: feudalising +A Z: feudalizes / B: feudalises + +# feuter (level 95) +A: feuter / B: feutre + +# fiber (level 20) +A: fiber / B: fibre +A: fibers / B: fibres +A: fiber's / B: fibre's + +# fiberboard (level 50) +A: fiberboard / B: fibreboard +A: fiberboards / B: fibreboards +A: fiberboard's / B: fibreboard's + +# fibered (level 70) +A: fibered / B: fibred + +# fiberfill (level 60) +A: fiberfill / B: fibrefill +A: fiberfills / B: fibrefills +A: fiberfill's / B: fibrefill's + +# fiberglass (level 35) +A: fiberglass / B: fibreglass +A: fiberglasses / B: fibreglasses +A: fiberglass's / B: fibreglass's + +# fiberization (level 80) +A: fiberization / B: fibrisation / Z: fibrization + +# fiberize (level 80) +A: fiberize / B: fibrise / Z: fibrize +A: fiberized / B: fibrised / Z: fibrized +A: fiberizing / B: fibrising / Z: fibrizing +A: fiberizes / B: fibrises / Z: fibrizes + +# fiberizer (level 95) +A: fiberizer / B: fibriser / Z: fibrizer +A: fiberizers / B: fibrisers / Z: fibrizers + +# fiberless (level 80) +A: fiberless / B: fibreless +A: fiberlesser / B: fibrelesser +A: fiberlessest / B: fibrelessest + +# fiberlesses (level 99) +A: fiberlesses / B: fibrelesses + +# fiberscope (level 80) +A: fiberscope / B: fibrescope +A: fiberscopes / B: fibrescopes + +# fiberware (level 95) +A: fiberware / B: fibreware + +# fictionalization (level 55) +A Z: fictionalization / B: fictionalisation +A Z: fictionalizations / B: fictionalisations +A Z: fictionalization's / B: fictionalisation's + +# fictionalize (level 50) +A Z: fictionalize / B: fictionalise +A Z: fictionalized / B: fictionalised +A Z: fictionalizing / B: fictionalising +A Z: fictionalizes / B: fictionalises + +# fictionization (level 80) +A Z: fictionization / B: fictionisation +A Z: fictionizations / B: fictionisations +A Z: fictionization's / B: fictionisation's + +# fictionize (level 80) +A Z: fictionize / B: fictionise +A Z: fictionized / B: fictionised +A Z: fictionizing / B: fictionising +A Z: fictionizes / B: fictionises + +# figurize (level 95) +A Z: figurize / B: figurise +A Z: figurizes / B: figurises + +# filet (level 35) +_: filet | :1 +_: fillet / _V: filet | +_: fillets / _V: filets | +_: fillet's / _V: filet's | +_: fillet / _-: filet | +_: filleted / _-: fileted | +_: filleting / _-: fileting | +_: fillets / _-: filets | + +# filmize (level 95) +A Z: filmize / B: filmise +A Z: filmizes / B: filmises + +# filterable (level 50) +A B: filterable / AV Bv: filtrable + +# finalization (level 55) +A Z: finalization / B: finalisation +A Z: finalizations / B: finalisations +A Z: finalization's / B: finalisation's + +# finalize (level 20) +A Z: finalize / B: finalise +A Z: finalized / B: finalised +A Z: finalizing / B: finalising +A Z: finalizes / B: finalises + +# Finlandization (level 80) +A Z: Finlandization / B: Finlandisation +A Z: Finlandizations / B: Finlandisations + +# fiscalization (level 95) +A Z: fiscalization / B: fiscalisation +A Z: fiscalizations / B: fiscalisations +A Z: fiscalization's / B: fiscalisation's + +# fiscalize (level 95) +A Z: fiscalize / B: fiscalise +A Z: fiscalizes / B: fiscalises + +# fjord (level 40) +_: fjord / _V: fiord +_: fjords / _V: fiords +_: fjord's / _V: fiord's + +# flamboyantize (level 95) +A Z: flamboyantize / B: flamboyantise +A Z: flamboyantizes / B: flamboyantises + +# flannel (level 35) +A Cv: flanneled / B C: flannelled +A Cv: flanneling / B C: flannelling + +# flannelette (level 50) +A B: flannelette / AV: flannelet +A B: flannelette's / AV: flannelet's + +# flavor (level 10) +A Cv DV: flavor / B C D: flavour +A Cv DV: flavored / B C D: flavoured +A Cv DV: flavoring / B C D: flavouring +A Cv DV: flavor's / B C D: flavour's +A Cv DV: flavorings / B C D: flavourings +A Cv DV: flavoring's / B C D: flavouring's +A Cv DV: flavors / B C D: flavours + +# flavorer (level 80) +A Cv DV: flavorer / B C D: flavourer +A Cv DV: flavorers / B C D: flavourers +A Cv DV: flavorer's / B C D: flavourer's + +# flavorful (level 50) +A Cv DV: flavorful / B C D: flavourful +A Cv DV: flavorfuler / B C D: flavourfuler +A Cv DV: flavorfulest / B C D: flavourfulest + +# flavorfully (level 80) +A Cv DV: flavorfully / B C D: flavourfully +A Cv DV: flavorfullier / B C D: flavourfullier +A Cv DV: flavorfulliest / B C D: flavourfulliest + +# flavorless (level 50) +A Cv DV: flavorless / B C D: flavourless +A Cv DV: flavorlesser / B C D: flavourlesser +A Cv DV: flavorlessest / B C D: flavourlessest + +# flavorlesses (level 99) +A Cv DV: flavorlesses / B C D: flavourlesses + +# flavorous (level 70) +A B: flavorous / B-: flavourous + +# flavorsome (level 55) +A Cv DV: flavorsome / B C D: flavoursome +A Cv DV: flavorsomer / B C D: flavoursomer +A Cv DV: flavorsomest / B C D: flavoursomest + +# flavory (level 70) +A Cv DV: flavory / B C D: flavoury +A Cv DV: flavorier / B C D: flavourier +A Cv DV: flavoriest / B C D: flavouriest + +# fledgling (level 35) +A B C: fledgling / AV Bv: fledgeling +A B C: fledglings / AV Bv: fledgelings +A B C: fledgling's / AV Bv: fledgeling's + +# Fletcherize (level 95) +A Z: Fletcherize / B: Fletcherise +A Z: Fletcherized / B: Fletcherised +A Z: Fletcherized's / B: Fletcherised's +A Z: Fletcherizing / B: Fletcherising +A Z: Fletcherizes / B: Fletcherises +A Z: Fletcherize's / B: Fletcherise's +A Z: Fletcherizing's / B: Fletcherising's + +# flextime (level 40) +_: flextime / _V: flexitime +_: flextimes / _V: flexitimes +_: flextime's / _V: flexitime's + +# flier (level 35) +A Bv: flier / AV B: flyer | +A Bv: fliers / AV B: flyers | +A Bv: flier's / AV B: flyer's | + +# floozy (level 40) +_: floozy / _v: floozie +_: floozy's / _v: floozie's + +# floralize (level 95) +A Z: floralize / B: floralise +A Z: floralizes / B: floralises + +# floramor (level 95) +A: floramor / B: floramour + +# flotation (level 50) +_: flotation / _V: floatation +_: flotations / _V: floatations +_: flotation's / _V: floatation's + +# fluidization (level 80) +A Z: fluidization / B: fluidisation +A Z: fluidizations / B: fluidisations +A Z: fluidization's / B: fluidisation's + +# fluidize (level 70) +A Z: fluidize / B: fluidise +A Z: fluidized / B: fluidised +A Z: fluidizing / B: fluidising +A Z: fluidizes / B: fluidises + +# fluidizer (level 80) +A Z: fluidizer / B: fluidiser +A Z: fluidizers / B: fluidisers +A Z: fluidizer's / B: fluidiser's + +# fluky (level 50) +_: fluky / _V: flukey + +# flunky (level 35) +_: flunky / _V: flunkie / _V: flunkey +_: flunkies / _V: flunkeys +_: flunky's / _V: flunkey's / _V: flunkie's + +# fluoridization (level 95) +A Z: fluoridization / B: fluoridisation +A Z: fluoridizations / B: fluoridisations +A Z: fluoridization's / B: fluoridisation's + +# fluoridize (level 80) +A Z: fluoridize / B: fluoridise +A Z: fluoridized / B: fluoridised +A Z: fluoridizing / B: fluoridising +A Z: fluoridizes / B: fluoridises + +# flutist (level 35) +A C: flutist / B C.: flautist +A C: flutist's / B C.: flautist's +A C: flutists / B C.: flautists + +# focalization (level 80) +A Z: focalization / B: focalisation +A Z: focalizations / B: focalisations +A Z: focalization's / B: focalisation's + +# focalize (level 70) +A Z: focalize / B: focalise +A Z: focalized / B: focalised +A Z: focalizing / B: focalising +A Z: focalizes / B: focalises + +# focus (level 35) +A B: focused / AV Bv: focussed +A B: focusing / AV Bv: focussing + +# fogy (level 35) +A Bv: fogy / B: fogey +A Bv: fogies / B: fogeys +A Bv: fogy's / B: fogey's + +# fondue (level 50) +_: fondue / _V: fondu +_: fondues / _V: fondus +_: fondue's / _V: fondu's + +# fontanel (level 60) +A: fontanel / Av B: fontanelle +A: fontanels / Av B: fontanelles +A: fontanel's / Av B: fontanelle's + +# foolhardize (level 95) +A Z: foolhardize / B: foolhardise +A Z: foolhardized / B: foolhardised +A Z: foolhardizing / B: foolhardising +A Z: foolhardizes / B: foolhardises + +# forb (level 70) +A: forb / B: fourb + +# forche (level 95) +A: forche / B: fourche + +# forecastle (level 50) +_: forecastle / _v: fo'c'sle / _V: fo'c's'le +_: forecastles / _v: fo'c'sles / _V: fo'c's'les +_: forecastle's / _v: fo'c'sle's / _V: fo'c's'le's + +# foreignization (level 95) +A Z: foreignization / B: foreignisation +A Z: foreignizations / B: foreignisations +A Z: foreignization's / B: foreignisation's + +# foreignize (level 95) +A Z: foreignize / B: foreignise +A Z: foreignizes / B: foreignises + +# forejudgment (level 80) +A: forejudgment / B: forejudgement +A: forejudgments / B: forejudgements +A: forejudgment's / B: forejudgement's + +# foreprize (level 95) +A Z: foreprize / B: foreprise + +# forgather (level 50) +A Bv: forgather / Av B: foregather +A Bv: forgathered / Av B: foregathered +A Bv: forgathering / Av B: foregathering +A Bv: forgathers / Av B: foregathers + +# forgo (level 35) +A B: forgo / AV Bv: forego | :1 +A B: forwent / AV Bv: forewent | :1 +A B: forgone / AV Bv: foregone | :1 +A B: forgoing / AV Bv: foregoing | :1 +A B: forgoes / AV Bv: foregoes | :1 +A B: forego | :2 +A B: forewent | :2 +A B: foregone | :2 +A B: foregoing | :2 +A B: foregoes | :2 + +# formalizable (level 80) +A Z: formalizable / B: formalisable + +# formalization (level 50) +A Z: formalization / B: formalisation +A Z: formalizations / B: formalisations +A Z: formalization's / B: formalisation's + +# formalize (level 35) +A Z: formalize / B: formalise +A Z: formalized / B: formalised +A Z: formalizing / B: formalising +A Z: formalizes / B: formalises + +# formalizer (level 80) +A Z: formalizer / B: formaliser +A Z: formalizers / B: formalisers +A Z: formalizer's / B: formaliser's + +# forme (level 70) +A: forme / B: formae + +# formicide (level 95) +A: formicide / B: formicidae + +# formularization (level 80) +A Z: formularization / B: formularisation +A Z: formularizations / B: formularisations +A Z: formularization's / B: formularisation's + +# formularize (level 70) +A Z: formularize / B: formularise +A Z: formularized / B: formularised +A Z: formularizing / B: formularising +A Z: formularizes / B: formularises +A Z: formularizing's / B: formularising's + +# formularizer (level 80) +A Z: formularizer / B: formulariser +A Z: formularizers / B: formularisers +A Z: formularizer's / B: formulariser's + +# formulas (level 20) +A B: formulas / Av: formulae | for other uses +A: formulas / Av B: formulae | for some uses + +# formulization (level 80) +A Z: formulization / B: formulisation +A Z: formulizations / B: formulisations +A Z: formulization's / B: formulisation's + +# formulize (level 80) +A Z: formulize / B: formulise +A Z: formulized / B: formulised +A Z: formulizing / B: formulising +A Z: formulizes / B: formulises + +# formulizer (level 80) +A Z: formulizer / B: formuliser +A Z: formulizer's / B: formuliser's + +# forswear (level 35) +_: forswear / _V: foreswear | :1 +_: forswore / _V: foreswore | :1 +_: forsworn / _V: foresworn | :1 +_: forswearing / _V: foreswearing | :1 +_: forswears / _V: foreswears | :1 +_: forsworn / _V: foresworn | :2 + +# forumize (level 95) +A Z: forumize / B: forumise +A Z: forumizes / B: forumises + +# fosse (level 70) +A: fosse / B: fossae + +# fossiled (level 95) +A: fossiled / B: fossilled + +# fossilizable (level 80) +A Z: fossilizable / B: fossilisable +A Z: fossilizabler / B: fossilisabler +A Z: fossilizables / B: fossilisables +A Z: fossilizablest / B: fossilisablest +A Z: fossilizable's / B: fossilisable's + +# fossilization (level 50) +A Z: fossilization / B: fossilisation +A Z: fossilizations / B: fossilisations +A Z: fossilization's / B: fossilisation's + +# fossilize (level 35) +A Z: fossilize / B: fossilise +A Z: fossilized / B: fossilised +A Z: fossilizing / B: fossilising +A Z: fossilizes / B: fossilises + +# fossule (level 95) +A: fossule / B: fossulae + +# foulder (level 80) +A: foulder / B: fouldre + +# fouter (level 80) +A: fouter / B: foutre +A: fouters / B: foutres + +# foveole (level 80) +A: foveole / B: foveolae + +# fractionalization (level 80) +A Z: fractionalization / B: fractionalisation +A Z: fractionalizations / B: fractionalisations +A Z: fractionalization's / B: fractionalisation's + +# fractionalize (level 80) +A Z: fractionalize / B: fractionalise +A Z: fractionalized / B: fractionalised +A Z: fractionalizing / B: fractionalising +A Z: fractionalizes / B: fractionalises + +# fractionization (level 80) +A Z: fractionization / B: fractionisation +A Z: fractionizations / B: fractionisations +A Z: fractionization's / B: fractionisation's + +# fractionize (level 70) +A Z: fractionize / B: fractionise +A Z: fractionized / B: fractionised +A Z: fractionizing / B: fractionising +A Z: fractionizes / B: fractionises + +# fragmentization (level 80) +A Z: fragmentization / B: fragmentisation +A Z: fragmentization's / B: fragmentisation's + +# fragmentize (level 80) +A Z: fragmentize / B: fragmentise +A Z: fragmentized / B: fragmentised +A Z: fragmentizing / B: fragmentising +A Z: fragmentizes / B: fragmentises + +# fragmentizer (level 80) +A Z: fragmentizer / B: fragmentiser + +# frambesia (level 70) +A: frambesia / B: framboesia +A: frambesias / B: framboesias +A: frambesia's / B: framboesia's + +# Francize (level 95) +A Z: Francize / B: Francise +A Z: Francizes / B: Francises +A Z: Francize's / B: Francise's + +# Franklinization (level 95) +A Z: Franklinization / B: Franklinisation +A Z: Franklinizations / B: Franklinisations +A Z: Franklinization's / B: Franklinisation's + +# fraternization (level 50) +A Z: fraternization / B: fraternisation +A Z: fraternizations / B: fraternisations +A Z: fraternization's / B: fraternisation's + +# fraternize (level 35) +A Z: fraternize / B: fraternise +A Z: fraternized / B: fraternised +A Z: fraternizing / B: fraternising +A Z: fraternizes / B: fraternises + +# fraternizer (level 60) +A Z: fraternizer / B: fraterniser +A Z: fraternizers / B: fraternisers +A Z: fraternizer's / B: fraterniser's + +# freebie (level 40) +_: freebie / _v: freebee +_: freebies / _v: freebees +_: freebie's / _v: freebee's + +# frena (level 70) +A: frena / B: fraena + +# Frenchize (level 95) +A Z: Frenchize / B: Frenchise +A Z: Frenchizes / B: Frenchises +A Z: Frenchize's / B: Frenchise's + +# frenetic (level 40) +_: frenetic / _-: phrenetic + +# frenular (level 80) +A: frenular / B: fraenular + +# frenulum (level 70) +A: frenulum / B: fraenulum +A: frenula / B: fraenula +A: frenulum's / B: fraenulum's + +# frenum (level 70) +A: frenum / B: fraenum +A: frenums / B: fraenums +A: frenum's / B: fraenum's + +# friborg (level 95) +A: friborg / B: fribourg + +# frictionize (level 95) +A Z: frictionize / B: frictionise +A Z: frictionizes / B: frictionises + +# frivol (level 70) +A: frivoled / B: frivolled +A: frivoling / B: frivolling + +# frivoler (level 80) +A: frivoler / B: frivoller +A: frivolers / B: frivollers +A: frivoler's / B: frivoller's + +# frizado (level 95) +A Z: frizado / B: frisado + +# frize (level 70) +A Z: frize / B: frise + +# frizette (level 70) +A Z: frizette / B: frisette +A Z: frizettes / B: frisettes +A Z: frizette's / B: frisette's + +# frizz (level 40) +_: frizz / _-: friz +_: frizz's / _-: friz's + +# frowzy (level 50) +A B: frowzy / Av Bv: frowsy +A B: frowzier / Av Bv: frowsier +A B: frowziest / Av Bv: frowsiest + +# fryer (level 50) +_: fryer / _V: frier +_: fryers / _V: friers +_: fryer's / _V: frier's + +# fuehrer (level 60) +_: fuehrer / _v: führer +_: fuehrers / _v: führers +_: fuehrer's / _v: führer's + +# fuel (level 35) +A: fueled / B: fuelled +A: fueling / B: fuelling + +# fueler (level 70) +A: fueler / B: fueller +A: fuelers / B: fuellers +A: fueler's / B: fueller's + +# fuelizer (level 95) +A Z: fuelizer / B: fueliser +A Z: fuelizers / B: fuelisers +A Z: fuelizer's / B: fueliser's + +# fulfill (level 20) +A C Dv: fulfill / B Cv D: fulfil +A C Dv: fulfills / B Cv D: fulfils + +# fulfillment (level 35) +A C: fulfillment / B Cv: fulfilment +A C: fulfillments / B Cv: fulfilments +A C: fulfillment's / B Cv: fulfilment's +## According to Macquarie, "to fulfill" is an acceptable variant, but fulfillment is not. (probably similar to install vs instalment in en-GB) + +# fulgor (level 70) +A: fulgor / B: fulgour +A: fulgors / B: fulgours + +# fulgorous (level 80) +A: fulgorous / B: fulgourous + +# fullness (level 35) +_: fullness / _V: fulness +_: fullnesses / _V: fulnesses +_: fullness's / _V: fulness's + +# functionalize (level 95) +A Z: functionalize / B: functionalise +A Z: functionalizes / B: functionalises + +# functionize (level 95) +A Z: functionize / B: functionise +A Z: functionizes / B: functionises + +# funeralize (level 95) +A Z: funeralize / B: funeralise +A Z: funeralizes / B: funeralises + +# funnel (level 35) +A: funneled / B: funnelled +A: funneling / B: funnelling + +# funneler (level 99) +A: funneler / B: funneller + +# furor (level 35) +A C Dv: furor / B D: furore +A C Dv: furors / B D: furores +A C Dv: furor's / B D: furore's + +# furcule (level 80) +A: furcule / B: furculae + +# Furie (level 95) +A: Furie / B: Furiae +A: Furie's / B: Furiae's + +# fuse (level 20) +A B C: fuse / AV Cv: fuze | detonating device +A B C: fused / AV Cv: fuzed | detonating device +A B C: fusing / AV Cv: fuzing | detonating device +A B C: fuses / AV Cv: fuzes | detonating device +A B C: fuse's / AV Cv: fuze's | detonating device +A B: fuse | otherwise +A B: fused | otherwise +A B: fusing | otherwise +A B: fuses | otherwise +A B: fuse's | otherwise + +# fusilier (level 55) +_: fusilier / _v: fusileer +_: fusiliers / _v: fusileers +_: fusilier's / _v: fusileer's + +# fustianize (level 80) +A Z: fustianize / B: fustianise +A Z: fustianized / B: fustianised +A Z: fustianizing / B: fustianising +A Z: fustianizes / B: fustianises + +# futilize (level 95) +A Z: futilize / B: futilise +A Z: futilizes / B: futilises + +# futurize (level 95) +A Z: futurize / B: futurise +A Z: futurizes / B: futurises + +# gabardine (level 50) +_: gabardine | :1 +_: gabardines | :1 +_: gabardine's | :1 +_: gaberdine / _V: gabardine | :2 +_: gaberdines / _V: gabardines | :2 +_: gaberdine's / _V: gabardine's | :2 + +# Gaelicization (level 95) +A Z: Gaelicization / B: Gaelicisation +A Z: Gaelicizations / B: Gaelicisations +A Z: Gaelicization's / B: Gaelicisation's + +# Gaelicize (level 80) +A Z: Gaelicize / B: Gaelicise +A Z: Gaelicizes / B: Gaelicises +A Z: Gaelicize's / B: Gaelicise's +A Z: gaelicize / B: gaelicise +A Z: gaelicized / B: gaelicised +A Z: gaelicizing / B: gaelicising +A Z: gaelicizes / B: gaelicises + +# galactorrhea (level 80) +A Dv: galactorrhea / B D: galactorrhoea +A Dv: galactorrheas / B D: galactorrhoeas + +# galactosemia (level 80) +A Dv: galactosemia / B D: galactosaemia +A Dv: galactosemias / B D: galactosaemias + +# galee (level 80) +A: galee / B: galeae + +# gallantize (level 95) +A Z: gallantize / B: gallantise +A Z: gallantizes / B: gallantises + +# galliardize (level 80) +A Z: galliardize / B: galliardise + +# Gallicization (level 80) +A Z: Gallicization / B: Gallicisation +A Z: Gallicizations / B: Gallicisations +A Z: Gallicization's / B: Gallicisation's + +# Gallicize (level 70) +A Z: Gallicize / B: Gallicise +A Z: Gallicized / B: Gallicised +A Z: Gallicizing / B: Gallicising +A Z: Gallicizes / B: Gallicises +A Z: gallicize / B: gallicise +A Z: gallicized / B: gallicised +A Z: gallicizing / B: gallicising +A Z: gallicizes / B: gallicises + +# Gallicizer (level 80) +A Z: Gallicizer / B: Galliciser +A Z: Gallicizer's / B: Galliciser's + +# gallisize (level 80) +A Z: gallisize / B: gallisise +A Z: gallisized / B: gallisised +A Z: gallisizing / B: gallisising +A Z: gallisizes / B: gallisises + +# gallize (level 80) +A Z: gallize / B: gallise +A Z: gallized / B: gallised +A Z: gallizing / B: gallising +A Z: gallizes / B: gallises + +# galosh (level 40) +_: galosh / _-: galoshe +_: galosh's / _-: galoshe's + +# galvanization (level 60) +A Z: galvanization / B: galvanisation +A Z: galvanizations / B: galvanisations +A Z: galvanization's / B: galvanisation's + +# galvanize (level 35) +A Z: galvanize / B: galvanise +A Z: galvanized / B: galvanised +A Z: galvanizing / B: galvanising +A Z: galvanizes / B: galvanises + +# galvanizer (level 70) +A Z: galvanizer / B: galvaniser +A Z: galvanizers / B: galvanisers +A Z: galvanizer's / B: galvaniser's + +# gambades (level 80) +A: gambades / B: gambadoes + +# gambol (level 50) +A: gamboled / B: gambolled +A: gamboling / B: gambolling + +# gamy (level 50) +_: gamy / _v: gamey + +# gargarize (level 80) +A Z: gargarize / B: gargarise +A Z: gargarized / B: gargarised +A Z: gargarizing / B: gargarising +A Z: gargarizes / B: gargarises + +# garrote (level 50) +_: garrote / _v: garotte / _v: garrotte / _V: garote +_: garroted / _v: garotted / _v: garrotted / _V: garoted +_: garroting / _v: garrotting / _v: garotting / _V: garoting +_: garrotes / _v: garottes / _v: garrottes / _V: garotes +_: garrote's / _v: garotte's / _v: garrotte's / _V: garote's + +# garruline (level 95) +A: garruline / B: garrulinae + +# gas (level 35) +A B: gases / AV: gasses | :1 +A B: gases | :2 + +# gasoline (level 10) +A B C: gasoline / AV Bv: gasolene +A B C: gasolines / AV Bv: gasolenes +A B C: gasoline's / AV Bv: gasolene's + +# gastrea (level 80) +A: gastrea / B: gastraea +A: gastreas / B: gastraeas + +# gastrocele (level 95) +A: gastrocele / B: gastrocoele + +# gaufer (level 80) +A: gaufer / B: gaufre +A: gaufers / B: gaufres + +# gauffer (level 70) +A: gauffer / B: gauffre + +# gauge (level 35) +A B: gauge / AV B-: gage | :1 +A B: gauge's / AV B-: gage's | :1 +A B: gauged / AV B-: gaged | :1 +A B: gauging / AV B-: gaging | :1 +A B: gauges / AV B-: gages | :1 +A B: gage | (-) archaic; nautical, historical +A B: gage's | (-) archaic; nautical, historical +A B: gaged | (-) archaic; nautical, historical +A B: gaging | (-) archaic; nautical, historical +A B: gages | (-) archaic; nautical, historical + +# gavel (level 80) +A: gaveled / B: gavelled +A: gaveling / B: gavelling + +# gaveler (level 95) +A: gaveler / B: gaveller + +# gayety (level 50) +_: gaiety / _V: gayety +_: gaiety's / _V: gayety's + +# gayly (level 60) +_: gaily / _V: gayly + +# gelatin (level 35) +A B: gelatin / AV Bv: gelatine +A B: gelatins / AV Bv: gelatines +A B: gelatin's / AV Bv: gelatine's + +# gelatinizability (level 95) +A Z: gelatinizability / B: gelatinisability +A Z: gelatinizabilities / B: gelatinisabilities +A Z: gelatinizability's / B: gelatinisability's + +# gelatinizable (level 95) +A Z: gelatinizable / B: gelatinisable +A Z: gelatinizables / B: gelatinisables +A Z: gelatinizable's / B: gelatinisable's + +# gelatinization (level 80) +A Z: gelatinization / B: gelatinisation +A Z: gelatinizations / B: gelatinisations +A Z: gelatinization's / B: gelatinisation's + +# gelatinize (level 70) +A Z: gelatinize / B: gelatinise +A Z: gelatinized / B: gelatinised +A Z: gelatinizing / B: gelatinising +A Z: gelatinizes / B: gelatinises + +# gelatinizer (level 80) +A Z: gelatinizer / B: gelatiniser +A Z: gelatinizers / B: gelatinisers +A Z: gelatinizer's / B: gelatiniser's + +# gelofer (level 95) +A: gelofer / B: gelofre + +# gemology (level 60) +A C: gemology / Av B: gemmology +A C: gemologies / Av B: gemmologies +A C: gemology's / Av B: gemmology's + +# genealogize (level 70) +A Z: genealogize / B: genealogise +A Z: genealogized / B: genealogised +A Z: genealogizing / B: genealogising +A Z: genealogizes / B: genealogises + +# generalizability (level 80) +A Z: generalizability / B: generalisability + +# generalizable (level 70) +A Z: generalizable / B: generalisable +A Z: generalizabler / B: generalisabler +A Z: generalizables / B: generalisables +A Z: generalizablest / B: generalisablest +A Z: generalizable's / B: generalisable's + +# generalization (level 20) +A Z: generalization / B: generalisation +A Z: generalizations / B: generalisations +A Z: generalization's / B: generalisation's + +# generalizational (level 99) +A Z: generalizational / B: generalisational + +# generalize (level 20) +A Z: generalize / B: generalise +A Z: generalized / B: generalised +A Z: generalizing / B: generalising +A Z: generalizes / B: generalises + +# generalizer (level 80) +A Z: generalizer / B: generaliser +A Z: generalizers / B: generalisers +A Z: generalizer's / B: generaliser's + +# genialize (level 80) +A Z: genialize / B: genialise +A Z: genialized / B: genialised +A Z: genializing / B: genialising +A Z: genializes / B: genialises + +# genteelize (level 80) +A Z: genteelize / B: genteelise +A Z: genteelized / B: genteelised +A Z: genteelizing / B: genteelising +A Z: genteelizes / B: genteelises + +# gentilization (level 95) +A Z: gentilization / B: gentilisation +A Z: gentilizations / B: gentilisations +A Z: gentilization's / B: gentilisation's + +# gentilize (level 80) +A Z: gentilize / B: gentilise +A Z: gentilized / B: gentilised +A Z: gentilizing / B: gentilising +A Z: gentilizes / B: gentilises + +# gentlemanize (level 95) +A Z: gentlemanize / B: gentlemanise +A Z: gentlemanizes / B: gentlemanises + +# geodesia (level 95) +A: geodesia / B: geodaesia + +# geologize (level 70) +A Z: geologize / B: geologise +A Z: geologized / B: geologised +A Z: geologizing / B: geologising +A Z: geologizes / B: geologises + +# geometricize (level 95) +A Z: geometricize / B: geometricise +A Z: geometricizes / B: geometricises + +# geometrization (level 80) +A Z: geometrization / B: geometrisation +A Z: geometrizations / B: geometrisations + +# geometrize (level 70) +A Z: geometrize / B: geometrise +A Z: geometrized / B: geometrised +A Z: geometrizing / B: geometrising +A Z: geometrizes / B: geometrises + +# ger (level 70) +A: ger / B: gre +A: gers / B: gres + +# gerenuk (level 70) +A: gerenuk / B: greenuk + +# Germanization (level 80) +A Z: Germanization / B: Germanisation +A Z: Germanization's / B: Germanisation's +A Z: germanization / B: germanisation +A Z: germanizations / B: germanisations +A Z: germanization's / B: germanisation's + +# Germanize (level 70) +A Z: Germanize / B: Germanise +A Z: Germanized / B: Germanised +A Z: Germanizing / B: Germanising +A Z: Germanizes / B: Germanises +A Z: germanize / B: germanise +A Z: germanized / B: germanised +A Z: germanizing / B: germanising +A Z: germanizes / B: germanises + +# Germanizer (level 80) +A Z: Germanizer / B: Germaniser +A Z: Germanizer's / B: Germaniser's +A Z: germanizer / B: germaniser +A Z: germanizers / B: germanisers + +# gerne (level 95) +A: gerne / B: grene + +# Ges (level 80) +A: Ges / B: Goes +A: ge / B: gae +A: ge / B: goe +A: ged / B: gaed + +# gessed (level 80) +A: gessed / B: gessoed + +# gesses (level 80) +A: gesses / B: gessoes + +# geste (level 80) +A: geste / B: gestae + +# Getae (level 95) +A: Getae / B: Goetae +A: Getae's / B: Goetae's + +# Getz (level 80) +A: Getz / B: Goetz +A: Getz's / B: Goetz's + +# Getzville (level 80) +A: Getzville / B: Goetzville +A: Getzville's / B: Goetzville's + +# gewgaw (level 50) +_: gewgaw / _V: geegaw +_: gewgaws / _V: geegaws +_: gewgaw's / _V: geegaw's + +# gey (level 70) +A: gey / B: goey + +# Gheber (level 70) +A: Gheber / B: Ghebre +A: Ghebers / B: Ghebres +A: Gheber's / B: Ghebre's + +# ghettoization (level 70) +A Z: ghettoization / B: ghettoisation +A Z: ghettoizations / B: ghettoisations +A Z: ghettoization's / B: ghettoisation's + +# ghettoize (level 55) +A Z: ghettoize / B: ghettoise +A Z: ghettoized / B: ghettoised +A Z: ghettoizing / B: ghettoising +A Z: ghettoizes / B: ghettoises + +# giantize (level 95) +A Z: giantize / B: giantise +A Z: giantizes / B: giantises + +# gimbal (level 80) +A: gimbaled / B: gimballed +A: gimbaling / B: gimballing + +# ginkgo (level 50) +_ _v: ginkgo / _V: gingko +_: ginkgoes / _v: ginkgos / _V: gingkos / _V: gingkoes +_ _v: ginkgo's / _V: gingko's + +# girly (level 55) +_: girly / _v: girlie + +# gizmo (level 40) +_: gizmo / _V: gismo +_: gizmos / _V: gismos +_: gizmo's / _V: gismo's + +# glacialize (level 95) +A Z: glacialize / B: glacialise +A Z: glacializes / B: glacialises + +# glamorization (level 60) +A Z: glamorization / AV: glamourization / B: glamorisation +A AV Z: glamorizations / B: glamorisations +A AV Z: glamorization's / B: glamorisation's + +# glamorize (level 35) +A Z: glamorize / AV Zv: glamourize / B: glamorise +A Z: glamorized / AV Zv: glamourized / B: glamorised +A Z: glamorizing / AV Zv: glamourizing / B: glamorising +A Z: glamorizes / AV Zv: glamourizes / B: glamorises + +# glamorizer (level 70) +A Z: glamorizer / AV: glamourizer / B: glamoriser +A Z: glamorizers / AV: glamourizers / B: glamorisers +A Z: glamorizer's / AV: glamourizer's / B: glamoriser's + +# glamorless (level 80) +A DV: glamorless / B D: glamourless + +# glamorous (level 35) +A B: glamorous / B-: glamourous + +# glamorousness (level 70) +A B: glamorousness / B-: glamourousness +A B: glamorousness's / B-: glamourousness's + +# glamour (level 35) +A B C D: glamour / Av Cv DV: glamor +A B C D: glamours / Av Cv DV: glamors +A B C D: glamour's / Av Cv DV: glamor's +A B C D: glamoured / Av Cv DV: glamored +A B C D: glamouring / Av Cv DV: glamoring + +# glauconitization (level 80) +A Z: glauconitization / B: glauconitisation +A Z: glauconitizations / B: glauconitisations + +# glebe (level 70) +A: glebe / B: glebae + +# globalization (level 55) +A Z: globalization / B: globalisation +A Z: globalizations / B: globalisations +A Z: globalization's / B: globalisation's + +# globalize (level 55) +A Z: globalize / B: globalise +A Z: globalized / B: globalised +A Z: globalizing / B: globalising +A Z: globalizes / B: globalises + +# globigerine (level 70) +A: globigerine / B: globigerinae + +# glottalization (level 95) +A Z: glottalization / B: glottalisation +A Z: glottalization's / B: glottalisation's + +# glottalize (level 95) +A Z: glottalize / B: glottalise +A Z: glottalizes / B: glottalises + +# glucemia (level 95) +A Dv: glucemia / B D: glucaemia + +# glucosemia (level 95) +A Dv: glucosemia / B D: glucosaemia + +# gluing (level 35) +A B: gluing / AV Bv: glueing + +# gluteal (level 70) +A B: gluteal / BV: glutaeal +## OED has glutaeal listed first, ODE doesn't recognize glutaeal + +# gluteus (level 70) +A: gluteus / B: glutaeus +A: glutei / B: glutaei + +# gluttonize (level 70) +A Z: gluttonize / B: gluttonise +A Z: gluttonized / B: gluttonised +A Z: gluttonizing / B: gluttonising +A Z: gluttonizes / B: gluttonises + +# glycemia (level 95) +A Dv: glycemia / B D: glycaemia + +# glycemic (level 95) +A Dv: glycemic / B D: glycaemic + +# glycerin (level 35) +A: glycerin / Av B: glycerine +A: glycerins / Av B: glycerines +A: glycerin's / Av B: glycerine's + +# glycerinize (level 95) +A Z: glycerinize / B: glycerinise +A Z: glycerinizes / B: glycerinises + +# glycerolize (level 95) +A Z: glycerolize / B: glycerolise +A Z: glycerolizes / B: glycerolises + +# glycerolized (level 99) +A Z: glycerolized / B: glycerolised + +# glycogenize (level 95) +A Z: glycogenize / B: glycogenise +A Z: glycogenizes / B: glycogenises + +# glycohemia (level 95) +A Dv: glycohemia / B D: glycohaemia + +# glycosemia (level 95) +A Dv: glycosemia / B D: glycosaemia + +# Gnosticize (level 70) +A Z: Gnosticize / B: Gnosticise +A Z: Gnosticized / B: Gnosticised +A Z: Gnosticized's / B: Gnosticised's +A Z: Gnosticizing / B: Gnosticising +A Z: Gnosticizes / B: Gnosticises +A Z: Gnosticizing's / B: Gnosticising's +A Z: gnosticize / B: gnosticise +A Z: gnosticizes / B: gnosticises + +# Gnosticizer (level 95) +A Z: Gnosticizer / B: Gnosticiser +A Z: Gnosticizer's / B: Gnosticiser's +A Z: gnosticizer / B: gnosticiser +A Z: gnosticizers / B: gnosticisers + +# gobbledygook (level 40) +A Bv C: gobbledygook / AV B Cv: gobbledegook +A Bv C: gobbledygooks / AV B Cv: gobbledegooks +A Bv C: gobbledygook's / AV B Cv: gobbledegook's + +# goddamn (level 40) +_: goddamn / _v: goddam +_: goddamned / _v: goddamed +_: goddamning / _v: goddaming +_: goddamns / _v: goddams +_: goddamn's / _v: goddam's + +# goddize (level 95) +A Z: goddize / B: goddise +A Z: goddizes / B: goddises + +# goiter (level 50) +A: goiter / B: goitre +A: goiters / B: goitres +A: goiter's / B: goitre's + +# gole (level 95) +A: gole / B: goloe + +# goliathize (level 80) +A Z: goliathize / B: goliathise +A Z: goliathized / B: goliathised +A Z: goliathizing / B: goliathising +A Z: goliathizes / B: goliathises + +# goloshes (level 80) +A: goloshes / B: goloshoes + +# gonorrhea (level 40) +A C Dv: gonorrhea / B D: gonorrhoea +A C Dv: gonorrheas / B D: gonorrhoeas +A C Dv: gonorrhea's / B D: gonorrhoea's + +# gonorrheal (level 60) +A C Dv: gonorrheal / B D: gonorrhoeal +A C Dv: gonorrhealer / B D: gonorrhoealer +A C Dv: gonorrhealest / B D: gonorrhoealest + +# gonorrheic (level 80) +A C Dv: gonorrheic / B D: gonorrhoeic + +# goodbye (level 20) +A B: goodbye / Av: goodby +A B: goodbyes / Av: goodbys +A B: goodbye's / Av: goodby's + +# goody (level 20) +A B: goody / Av Bv: goodie +A Av B Bv: goodies +A B: goody's / Av Bv: goodie's + +# gor (level 80) +A: gor / B: gour + +# Gora (level 80) +A: Gora / B: Goura +A: Gora's / B: Goura's +A: gora / B: goura + +# goramies (level 80) +A: goramies / B: gouramies + +# gorgonize (level 80) +A Z: gorgonize / B: gorgonise +A Z: gorgonized / B: gorgonised +A Z: gorgonizing / B: gorgonising +A Z: gorgonizes / B: gorgonises + +# gormandism (level 70) +A: gormandism / B: gourmandism +A: gormandisms / B: gourmandisms +A: gormandism's / B: gourmandism's + +# gormandize (level 60) +A Z: gormandize / B: gormandise +A Z: gormandized / B: gormandised +A Z: gormandizing / B: gormandising +A Z: gormandizes / B: gormandises +A Z: gormandize's / B: gormandise's +A Z: gormandizings / B: gormandisings + +# gormandizer (level 60) +A Z: gormandizer / B: gormandiser +A Z: gormandizers / B: gormandisers +A Z: gormandizer's / B: gormandiser's + +# gospeler (level 80) +A: gospeler / B: gospeller +A: gospelers / B: gospellers +A: gospeler's / B: gospeller's + +# gospelize (level 80) +A Z: gospelize / B: gospelise +A Z: gospelized / B: gospelised +A Z: gospelizing / B: gospelising +A Z: gospelizes / B: gospelises + +# gospellize (level 80) +A Z: gospellize / B: gospellise +A Z: gospellized / B: gospellised +A Z: gospellizing / B: gospellising +A Z: gospellizes / B: gospellises + +# Gothicize (level 70) +A Z: Gothicize / B: Gothicise +A Z: Gothicized / B: Gothicised +A Z: Gothicizing / B: Gothicising +A Z: Gothicizes / B: Gothicises +A Z: gothicize / B: gothicise +A Z: gothicized / B: gothicised +A Z: gothicizing / B: gothicising +A Z: gothicizes / B: gothicises + +# Gothicizer (level 80) +A Z: Gothicizer / B: Gothiciser +A Z: Gothicizers / B: Gothicisers +A Z: Gothicizer's / B: Gothiciser's + +# gourmandize (level 70) +A Z: gourmandize / B: gourmandise +A Z: gourmandized / B: gourmandised +A Z: gourmandizing / B: gourmandising +A Z: gourmandizes / B: gourmandises + +# governmentalize (level 80) +A Z: governmentalize / B: governmentalise +A Z: governmentalized / B: governmentalised +A Z: governmentalizing / B: governmentalising +A Z: governmentalizes / B: governmentalises + +# Goyesque (level 80) +A: Goyesque / B: Goyaesque + +# Graecize (level 70) +A Z: Graecize / B: Graecise +A Z: Graecized / B: Graecised +A Z: Graecizing / B: Graecising +A Z: Graecizes / B: Graecises +A: Grecise / B: Graecise +A: Grecise's / B: Graecise's +A: Grecised / B: Graecised +A: Grecised's / B: Graecised's +A: Grecising / B: Graecising +A: Grecising's / B: Graecising's +A Z: Grecize / B: Grecise +A Z: Grecized / B: Grecised +A Z: Grecizing / B: Grecising +A Z: grecize / B: grecise +A Z: grecized / B: grecised +A Z: grecizing / B: grecising +A Z: grecizes / B: grecises + +# grammaticize (level 80) +A Z: grammaticize / B: grammaticise +A Z: grammaticized / B: grammaticised +A Z: grammaticizing / B: grammaticising +A Z: grammaticizes / B: grammaticises + +# grams (level 35) +A B C: gram / Bv: gramme | unit of mass +A B C: gram's / Bv: gramme's | unit of mass +A B C: grams / Bv: grammes | unit of mass +A B: gram | chickpeas +A B: gram's | chickpeas +A B: grams | chickpeas + +# granddad (level 40) +_: granddad / _v: grandad +_: granddads / _v: grandads +_: granddad's / _v: grandad's + +# grangerization (level 80) +A Z: grangerization / B: grangerisation +A Z: grangerizations / B: grangerisations +A Z: grangerization's / B: grangerisation's + +# grangerize (level 70) +A Z: grangerize / B: grangerise +A Z: grangerized / B: grangerised +A Z: grangerizing / B: grangerising +A Z: grangerizes / B: grangerises + +# grangerizer (level 95) +A Z: grangerizer / B: grangeriser +A Z: grangerizers / B: grangerisers +A Z: grangerizer's / B: grangeriser's + +# granitization (level 80) +A Z: granitization / B: granitisation +A Z: granitizations / B: granitisations +A Z: granitization's / B: granitisation's + +# granitize (level 80) +A Z: granitize / B: granitise +A Z: granitized / B: granitised +A Z: granitizing / B: granitising +A Z: granitizes / B: granitises + +# granny (level 35) +_: granny / _v: grannie +_: granny's / _v: grannie's + +# granulitization (level 80) +A Z: granulitization / B: granulitisation +A Z: granulitizations / B: granulitisations + +# granulize (level 95) +A Z: granulize / B: granulise +A Z: granulizes / B: granulises + +# graphic (level 10) +_: graphic / _V: graphical | +_: graphic | +_: graphical | graphical user interface + +# graphitizable (level 80) +A Z: graphitizable / B: graphitisable + +# graphitization (level 80) +A Z: graphitization / B: graphitisation +A Z: graphitizations / B: graphitisations +A Z: graphitization's / B: graphitisation's + +# graphitize (level 70) +A Z: graphitize / B: graphitise +A Z: graphitized / B: graphitised +A Z: graphitizing / B: graphitising +A Z: graphitizes / B: graphitises + +# gravel (level 35) +A: graveled / B: gravelled +A: graveling / B: gravelling + +# gray (level 10) +A Cv: gray / AV B C: grey +A Cv: grayed / AV B C: greyed +A Cv: grayer / AV B C: greyer +A Cv: grayest / AV B C: greyest +A Cv: graying / AV B C: greying +A Cv: grays / AV B C: greys +A Cv: gray's / AV B C: grey's +A B: gray | (-) physical unit +A B: grays | (-) physical unit + +# grayish (level 40) +A: grayish / B: greyish + +# grayness (level 50) +A: grayness / B: greyness +A: grayness's / B: greyness's + +# grecian (level 95) +A: grecian / B: graecian + +# Grecianize (level 80) +A Z: Grecianize / B: Grecianise +A Z: Grecianizes / B: Grecianises + +# Grecism (level 70) +A Bv: Grecism / B: Graecism +A Bv: Grecisms / B: Graecisms +A Bv: Grecism's / B: Graecism's +A Bv: grecism / B: graecism + +# Greekize (level 95) +A Z: Greekize / B: Greekise +A Z: Greekizes / B: Greekises +A Z: Greekize's / B: Greekise's + +# greisenization (level 80) +A Z: greisenization / B: greisenisation +A Z: greisenizations / B: greisenisations + +# greisenize (level 80) +A Z: greisenize / B: greisenise +A Z: greisenized / B: greisenised +A Z: greisenizing / B: greisenising +A Z: greisenizes / B: greisenises + +# griffon (level 50) +_: griffon +_: griffons +_: griffon's +_: griffin / _v: griffon / _V: gryphon | animal +_: griffins / _v: griffons / _V: gryphons | animal +_: griffin's / _v: griffon's / _V: gryphon's | animal + +# grizard (level 95) +A Z: grizard / B: grisard + +# grize (level 80) +A Z: grize / B: grise +A Z: grizes / B: grises + +# groin (level 35) +A: groin / B: groyne | wall +A: groin's / B: groyne's | wall +A: groins / B: groynes | wall +A B: groin | body part +A B: groin's | body part +A B: groins | body part + +# grovel (level 35) +A Cv: groveled / B C: grovelled +A Cv: groveling / B C: grovelling + +# groveler (level 50) +A: groveler / B: groveller +A: grovelers / B: grovellers +A: groveler's / B: groveller's + +# grovelingly (level 70) +A: grovelingly / B: grovellingly +A: grovelinglier / B: grovellinglier +A: grovelingliest / B: grovellingliest + +# gruel (level 35) +A Cv: grueled / B C: gruelled +A Cv: grueling / B C: gruelling +A Cv: gruelings / B C: gruellings +A Cv: grueling's / B C: gruelling's + +# grueler (level 80) +A: grueler / B: grueller +A: gruelers / B: gruellers +A: grueler's / B: grueller's + +# gruelingly (level 55) +A: gruelingly / B: gruellingly + +# Gueber (level 80) +A: Gueber / B: Guebre +A: Guebers / B: Guebres +A: Gueber's / B: Guebre's + +# guerrilla (level 35) +A B Dv: guerrilla / Av Bv D: guerilla +A B Dv: guerrillas / Av Bv D: guerillas +A B Dv: guerrilla's / Av Bv D: guerilla's + +# guizer (level 80) +A Z: guizer / B: guiser +A Z: guizers / B: guisers + +# gule (level 80) +A: gule / B: gulae + +# gully (level 35) +_: gully / _V: gulley | trench +_: gully's / _V: gulley's | trench +_: gullies / _-: gulleys | trench + +# gunnel (level 50) +_: gunnel | :1 +_: gunnels | :1 +_: gunnel's | :1 +_: gunwale / _V: gunnel | :2 +_: gunwales / _V: gunnels | :2 +_: gunwale's / _V: gunnel's | :2 + +# gutte (level 80) +A: gutte / B: guttae + +# guttule (level 95) +A: guttule / B: guttulae + +# gutturalization (level 80) +A Z: gutturalization / B: gutturalisation +A Z: gutturalizations / B: gutturalisations +A Z: gutturalization's / B: gutturalisation's + +# gutturalize (level 70) +A Z: gutturalize / B: gutturalise +A Z: gutturalized / B: gutturalised +A Z: gutturalizing / B: gutturalising +A Z: gutturalizes / B: gutturalises + +# gyne (level 80) +A: gyne / B: gynae + +# gynecic (level 70) +A Dv: gynecic / B D: gynaecic + +# gynecocracy (level 70) +A Dv: gynecocracy / B D: gynaecocracy +A Dv: gynecocracies / B D: gynaecocracies +A Dv: gynecocracy's / B D: gynaecocracy's + +# gynecocrat (level 95) +A Dv: gynecocrat / B D: gynaecocrat +A Dv: gynecocrats / B D: gynaecocrats +A Dv: gynecocrat's / B D: gynaecocrat's + +# gynecocratic (level 80) +A Dv: gynecocratic / B D: gynaecocratic +A Dv: gynecocraticer / B D: gynaecocraticer +A Dv: gynecocraticest / B D: gynaecocraticest + +# gynecoid (level 70) +A Dv: gynecoid / B D: gynaecoid + +# gynecol (level 95) +A Dv: gynecol / B D: gynaecol + +# gynecologic (level 60) +A Dv: gynecologic / B D: gynaecologic +A Dv: gynecologicer / B D: gynaecologicer +A Dv: gynecologicest / B D: gynaecologicest +A Dv: gynecologics / B D: gynaecologics + +# gynecological (level 40) +A C Dv: gynecological / B D: gynaecological +A C Dv: gynecologicaler / B D: gynaecologicaler +A C Dv: gynecologicalest / B D: gynaecologicalest +A C Dv: gynecologicals / B D: gynaecologicals +A C Dv: gynecological's / B D: gynaecological's + +# gynecologist (level 35) +A C Dv: gynecologist / B D: gynaecologist +A C Dv: gynecologists / B D: gynaecologists +A C Dv: gynecologist's / B D: gynaecologist's + +# gynecology (level 35) +A C Dv: gynecology / B Cv D: gynaecology +A C Dv: gynecologies / B Cv D: gynaecologies +A C Dv: gynecology's / B Cv D: gynaecology's + +# gynecomastia (level 70) +A C Dv: gynecomastia / B Cv D: gynaecomastia +A C Dv: gynecomastias / B Cv D: gynaecomastias +A C Dv: gynecomastia's / B Cv D: gynaecomastia's + +# gynecomasty (level 95) +A Dv: gynecomasty / B D: gynaecomasty +A Dv: gynecomasty's / B D: gynaecomasty's + +# gynecomorphous (level 95) +A Dv: gynecomorphous / B D: gynaecomorphous + +# gyneconitis (level 95) +A Dv: gyneconitis / B D: gynaeconitis + +# gyneocracy (level 95) +A Dv: gyneocracy / B D: gynaeocracy + +# gyneolater (level 95) +A Dv: gyneolater / B D: gynaeolater + +# gyneolatry (level 95) +A Dv: gyneolatry / B D: gynaeolatry + +# gynomonecious (level 80) +A Dv: gynomonecious / B D: gynomonoecious + +# gypsy (level 40) +_: gypsy / _V: gipsy +_: gypsies / _V: gipsies +_: gypsy's / _V: gipsy's + +# gyrostabilization (level 80) +A Z: gyrostabilization / B: gyrostabilisation +A Z: gyrostabilizations / B: gyrostabilisations + +# gyrostabilizer (level 70) +A Z: gyrostabilizer / B: gyrostabiliser +A Z: gyrostabilizers / B: gyrostabilisers +A Z: gyrostabilizer's / B: gyrostabiliser's + +# ha (level 20) +A B: ha / Av Bv: hah +A B: ha | + +# habitualize (level 95) +A Z: habitualize / B: habitualise +A Z: habitualizes / B: habitualises + +# hairdryer (level 55) +_: hairdryer / _v: hairdrier +_: hairdryers / _v: hairdriers +_: hairdryer's / _v: hairdrier's + +# hajj (level 55) +_: hajj / _V: hadj +_: hajj's / _V: hadj's +_: hajji / _V: hadji +_: hajjis / _V: hadjis +_: hajji's / _V: hadji's + +# hajjs (level 95) +_: hajjs / _V: hadjs + +# halloo (level 55) +_: halloo / _V: hallo / _V: hollo +_: hallooing / _V: halloing / _V: holloing +_: halloos / _V: hollos / _V: hallos +_: halloo's / _V: hallo's / _V: hollo's + +# hamletization (level 95) +A Z: hamletization / B: hamletisation +A Z: hamletizations / B: hamletisations +A Z: hamletization's / B: hamletisation's + +# hamletize (level 95) +A Z: hamletize / B: hamletise +A Z: hamletizes / B: hamletises + +# handsel (level 80) +A: handseled / B: handselled +A: handseling / B: handselling + +# hankie (level 40) +A Bv: hankie / A. B: hanky +A Bv: hankie's / A. B: hanky's + +# Hanoverianize (level 95) +A Z: Hanoverianize / B: Hanoverianise +A Z: Hanoverianizes / B: Hanoverianises +A Z: Hanoverianize's / B: Hanoverianise's + +# Hanoverize (level 95) +A Z: Hanoverize / B: Hanoverise +A Z: Hanoverizes / B: Hanoverises +A Z: Hanoverize's / B: Hanoverise's + +# hansardize (level 80) +A Z: hansardize / B: hansardise +A Z: hansardized / B: hansardised +A Z: hansardizing / B: hansardising +A Z: hansardizes / B: hansardises + +# hansel (level 80) +A: hanseled / B: hanselled +A: hanseling / B: hanselling + +# harbor (level 35) +A Cv DV: harbor / B C D: harbour +A Cv DV: harbored / B C D: harboured +A Cv DV: harboring / B C D: harbouring +A Cv DV: harbors / B C D: harbours +A Cv DV: harbor's / B C D: harbour's + +# harborage (level 70) +A Cv DV: harborage / B C D: harbourage +A Cv DV: harborages / B C D: harbourages +A Cv DV: harborage's / B C D: harbourage's + +# harborer (level 70) +A Cv DV: harborer / B C D: harbourer +A Cv DV: harborers / B C D: harbourers +A Cv DV: harborer's / B C D: harbourer's + +# harborful (level 80) +A Cv DV: harborful / B C D: harbourful + +# harborless (level 80) +A Cv DV: harborless / B C D: harbourless +A Cv DV: harborlesser / B C D: harbourlesser +A Cv DV: harborlessest / B C D: harbourlessest + +# harborlesses (level 99) +A Cv DV: harborlesses / B C D: harbourlesses + +# harborous (level 95) +A: harborous / B: harbourous + +# harborside (level 80) +A Cv DV: harborside / B C D: harbourside + +# harborward (level 95) +A Cv DV: harborward / B C D: harbourward + +# harmonizable (level 95) +A Z: harmonizable / B: harmonisable +A Z: harmonizabler / B: harmonisabler +A Z: harmonizables / B: harmonisables +A Z: harmonizablest / B: harmonisablest +A Z: harmonizable's / B: harmonisable's + +# harmonization (level 40) +A Z: harmonization / B: harmonisation +A Z: harmonizations / B: harmonisations +A Z: harmonization's / B: harmonisation's + +# harmonize (level 35) +A Z: harmonize / B: harmonise +A Z: harmonized / B: harmonised +A Z: harmonizing / B: harmonising +A Z: harmonizes / B: harmonises + +# harmonizer (level 60) +A Z: harmonizer / B: harmoniser +A Z: harmonizers / B: harmonisers +A Z: harmonizer's / B: harmoniser's + +# Harmothoe (level 95) +A: Harmothoe / B: Harmothoae +A: Harmothoe's / B: Harmothoae's + +# Harvardize (level 95) +A Z: Harvardize / B: Harvardise +A Z: Harvardizes / B: Harvardises +A Z: Harvardize's / B: Harvardise's + +# Harveyize (level 95) +A Z: Harveyize / B: Harveyise +A Z: Harveyizes / B: Harveyises +A Z: Harveyize's / B: Harveyise's + +# hashish (level 40) +_: hashish / _V: hasheesh / _-: haschisch +_: hashish's / _V: hasheesh's / _-: haschisch's + +# Hasidean (level 95) +A: Hasidean / B: Hasidaean +A: Hasidean's / B: Hasidaean's + +# Hasmonean (level 80) +A: Hasmonean / B: Hasmonaean +A: Hasmoneans / B: Hasmonaeans + +# hatchel (level 70) +A: hatcheled / B: hatchelled +A: hatcheling / B: hatchelling + +# Hattize (level 95) +A Z: Hattize / B: Hattise +A Z: Hattizes / B: Hattises +A Z: Hattize's / B: Hattise's + +# haussmannization (level 80) +A Z: haussmannization / B: haussmannisation +A Z: haussmannizations / B: haussmannisations + +# haussmannize (level 80) +A Z: haussmannize / B: haussmannise +A Z: haussmannized / B: haussmannised +A Z: haussmannizing / B: haussmannising +A Z: haussmannizes / B: haussmannises + +# havior (level 80) +A Cv DV: havior / B C D: haviour +A Cv DV: haviors / B C D: haviours + +# haviored (level 95) +A Cv DV: haviored / B C D: havioured + +# hazardize (level 80) +A Z: hazardize / B: hazardise +A Z: hazardizes / B: hazardises + +# heathenization (level 99) +A Z: heathenization / B: heathenisation + +# heathenize (level 70) +A Z: heathenize / B: heathenise +A Z: heathenized / B: heathenised +A Z: heathenizing / B: heathenising +A Z: heathenizes / B: heathenises + +# heavenize (level 95) +A Z: heavenize / B: heavenise +A Z: heavenizes / B: heavenises + +# Hebraicize (level 95) +A Z: Hebraicize / B: Hebraicise +A Z: Hebraicizes / B: Hebraicises +A Z: Hebraicize's / B: Hebraicise's + +# Hebraization (level 80) +A Z: Hebraization / B: Hebraisation +A Z: Hebraization's / B: Hebraisation's +A Z: hebraization / B: hebraisation +A Z: hebraizations / B: hebraisations + +# Hebraize (level 70) +A Z: Hebraize / B: Hebraise +A Z: Hebraized / B: Hebraised +A Z: Hebraizing / B: Hebraising +A Z: Hebraizes / B: Hebraises +A Z: hebraize / B: hebraise +A Z: hebraized / B: hebraised +A Z: hebraizing / B: hebraising +A Z: hebraizes / B: hebraises + +# Hebraizer (level 80) +A Z: Hebraizer / B: Hebraiser +A Z: Hebraizer's / B: Hebraiser's + +# Hecatean (level 80) +A: Hecatean / B: Hecataean +A: Hecatean's / B: Hecataean's + +# hectogram (level 60) +A B C: hectogram / Bv: hectogramme +A B C: hectograms / Bv: hectogrammes +A B C: hectogram's / Bv: hectogramme's + +# hectoliter (level 70) +A: hectoliter / B: hectolitre +A: hectoliters / B: hectolitres +A: hectoliter's / B: hectolitre's + +# hectometer (level 60) +A: hectometer / B: hectometre +A: hectometers / B: hectometres +A: hectometer's / B: hectometre's + +# hed (level 80) +A: hed / B: haed + +# Hegelianize (level 95) +A Z: Hegelianize / B: Hegelianise +A Z: Hegelianizes / B: Hegelianises +A Z: Hegelianize's / B: Hegelianise's + +# Hekatean (level 95) +A: Hekatean / B: Hekataean +A: Hekatean's / B: Hekataean's + +# hele (level 95) +A: hele / B: heloe + +# helled (level 80) +A: helled / B: helloed + +# Hellenization (level 50) +A Z: Hellenization / B: Hellenisation +A Z: Hellenizations / B: Hellenisations +A Z: Hellenization's / B: Hellenisation's + +# Hellenize (level 50) +A Z: Hellenize / B: Hellenise +A Z: Hellenized / B: Hellenised +A Z: Hellenizing / B: Hellenising +A Z: Hellenizes / B: Hellenises +A Z: hellenize / B: hellenise +A Z: hellenized / B: hellenised +A Z: hellenizing / B: hellenising +A Z: hellenizes / B: hellenises + +# Hellenizer (level 70) +A Z: Hellenizer / B: Helleniser +A Z: Hellenizer's / B: Helleniser's + +# hemachrome (level 70) +A Dv: hemachrome / B D: haemachrome +A Dv: hemachrome's / B D: haemachrome's + +# hemacytometer (level 80) +A Dv: hemacytometer / B D: haemacytometer +A Dv: hemacytometer's / B D: haemacytometer's + +# hemad (level 95) +A: hemad / B: haemad + +# hemagglutinate (level 70) +A Dv: hemagglutinate / B D: haemagglutinate +A Dv: hemagglutinated / B D: haemagglutinated +A Dv: hemagglutinating / B D: haemagglutinating + +# hemagglutination (level 80) +A Dv: hemagglutination / B D: haemagglutination +A Dv: hemagglutination's / B D: haemagglutination's + +# hemagglutinative (level 95) +A Dv: hemagglutinative / B D: haemagglutinative + +# hemagglutinin (level 80) +A Dv: hemagglutinin / B D: haemagglutinin + +# hemagogue (level 95) +A Dv: hemagogue / B D: haemagogue + +# hemal (level 70) +A Dv: hemal / B D: haemal + +# hemameba (level 95) +A Dv: hemameba / B D: hemamoeba + +# hemangioma (level 70) +A Dv: hemangioma / B D: haemangioma +A Dv: hemangiomas / B D: haemangiomas +A Dv: hemangioma's / B D: haemangioma's + +# hemangiomata (level 80) +A Dv: hemangiomata / B D: haemangiomata + +# hemangiomatosis (level 95) +A Dv: hemangiomatosis / B D: haemangiomatosis + +# hemapophysis (level 95) +A Dv: hemapophysis / B D: haemapophysis + +# hemaspectroscope (level 95) +A Dv: hemaspectroscope / B D: haemaspectroscope + +# hematal (level 80) +A Dv: hematal / B D: haematal + +# hematein (level 80) +A Dv: hematein / B D: haematein +A Dv: hematein's / B D: haematein's + +# hematemesis (level 80) +A Dv: hematemesis / B D: haematemesis + +# hematherm (level 95) +A Dv: hematherm / B D: haematherm + +# hemathermal (level 95) +A Dv: hemathermal / B D: haemathermal + +# hemathermous (level 95) +A Dv: hemathermous / B D: haemathermous + +# hematic (level 70) +A Dv: hematic / B D: haematic +A Dv: hematics / B D: haematics + +# hematid (level 95) +A Dv: hematid / B D: haematid + +# hematin (level 70) +A Dv: hematin / B D: haematin +A Dv: hematins / B D: haematins +A Dv: hematin's / B D: haematin's + +# hematinic (level 70) +A Dv: hematinic / B D: haematinic +A Dv: hematinics / B D: haematinics +A Dv: hematinic's / B D: haematinic's + +# hematite (level 60) +A C Dv: hematite / B D: haematite +A C Dv: hematites / B D: haematites +A C Dv: hematite's / B D: haematite's + +# hematitic (level 80) +A Dv: hematitic / B D: haematitic + +# hematoblast (level 70) +A Dv: hematoblast / B D: haematoblast +A Dv: hematoblasts / B D: haematoblasts +A Dv: hematoblast's / B D: haematoblast's + +# hematobranchiate (level 95) +A Dv: hematobranchiate / B D: haematobranchiate + +# hematocele (level 70) +A C Dv: hematocele / B D: haematocele +A C Dv: hematocele's / B D: haematocele's + +# hematocrit (level 80) +A Dv: hematocrit / B D: haematocrit +A Dv: hematocrits / B D: haematocrits +A Dv: hematocrit's / B D: haematocrit's + +# hematocryal (level 70) +A Dv: hematocryal / B D: haematocryal + +# hematocyst (level 95) +A Dv: hematocyst / B D: haematocyst +A Dv: hematocyst's / B D: haematocyst's + +# hematocystis (level 95) +A Dv: hematocystis / B D: haematocystis + +# hematocyte (level 95) +A Dv: hematocyte / B D: haematocyte +A Dv: hematocyte's / B D: haematocyte's + +# hematogenesis (level 70) +A Dv: hematogenesis / B D: haematogenesis +A Dv: hematogeneses / B D: haematogeneses +A Dv: hematogenesis's / B D: haematogenesis's + +# hematogenous (level 70) +A Dv: hematogenous / B D: haematogenous + +# hematoid (level 70) +A Dv: hematoid / B D: haematoid + +# hematoidin (level 95) +A Dv: hematoidin / B D: haematoidin + +# hematologic (level 60) +A C Dv: hematologic / B D: haematologic + +# hematological (level 55) +A C Dv: hematological / B D: haematological + +# hematologist (level 50) +A C Dv: hematologist / B D: haematologist +A C Dv: hematologists / B D: haematologists +A C Dv: hematologist's / B D: haematologist's + +# hematology (level 50) +A C Dv: hematology / B D: haematology +A C Dv: hematologies / B D: haematologies +A C Dv: hematology's / B D: haematology's + +# hematolysis (level 80) +A Dv: hematolysis / B D: haematolysis + +# hematoma (level 70) +A Dv: hematoma / B D: haematoma +A Dv: hematomas / B D: haematomas +A Dv: hematoma's / B D: haematoma's + +# hematomata (level 70) +A Dv: hematomata / B D: haematomata + +# hematometer (level 95) +A Dv: hematometer / B D: haematometer + +# hematophyte (level 95) +A Dv: hematophyte / B D: haematophyte +A Dv: hematophyte's / B D: haematophyte's + +# hematopoiesis (level 70) +A Dv: hematopoiesis / B D: haematopoiesis +A Dv: hematopoieses / B D: haematopoieses + +# hematopoietic (level 80) +A Dv: hematopoietic / B D: haematopoietic + +# hematorrhachis (level 95) +A Dv: hematorrhachis / B D: haematorrhachis + +# hematosepsis (level 95) +A Dv: hematosepsis / B D: haematosepsis + +# hematosin (level 95) +A Dv: hematosin / B D: haematosin + +# hematosis (level 70) +A Dv: hematosis / B D: haematosis +A Dv: hematosis's / B D: haematosis's + +# hematothermal (level 70) +A Dv: hematothermal / B D: haematothermal + +# hematoxylic (level 95) +A Dv: hematoxylic / B D: haematoxylic + +# hematoxylin (level 70) +A C Dv: hematoxylin / B D: haematoxylin +A C Dv: hematoxylins / B D: haematoxylins +A C Dv: hematoxylin's / B D: haematoxylin's + +# hematozoal (level 80) +A Dv: hematozoal / B D: haematozoal + +# hematozoic (level 80) +A Dv: hematozoic / B D: haematozoic + +# hematozoon (level 70) +A Dv: hematozoon / B D: haematozoon +A Dv: hematozoa / B D: haematozoa +A Dv: hematozoon's / B D: haematozoon's + +# hematozzoa (level 95) +A Dv: hematozzoa / B D: haematozzoa + +# hematuria (level 70) +A C Dv: hematuria / B D: haematuria +A C Dv: hematurias / B D: haematurias +A C Dv: hematuria's / B D: haematuria's + +# heme (level 60) +A Dv: heme / B D: haem + +# hemerythrin (level 80) +A: hemerythrin / B: hemoerythrin + +# hemic (level 70) +A Dv: hemic / B D: haemic + +# hemihypesthesia (level 95) +A: hemihypesthesia / B: hemihypoesthesia + +# hemin (level 70) +A Dv: hemin / B D: haemin +A Dv: hemins / B D: haemins +A Dv: hemin's / B D: haemin's + +# hemoblast (level 95) +A Dv: hemoblast / B D: haemoblast +A Dv: hemoblast's / B D: haemoblast's + +# hemochromatosis (level 80) +A Dv: hemochromatosis / B D: haemochromatosis +A Dv: hemochromatoses / B D: haemochromatoses + +# hemochrome (level 95) +A Dv: hemochrome / B D: haemochrome + +# hemocoel (level 80) +A Dv: hemocoel / B D: haemocoel +A Dv: hemocoels / B D: haemocoels + +# hemoconcentration (level 95) +A Dv: hemoconcentration / B D: haemoconcentration +A Dv: hemoconcentration's / B D: haemoconcentration's + +# hemoconia (level 80) +A Dv: hemoconia / B D: haemoconia + +# hemocyanin (level 80) +A Dv: hemocyanin / B D: haemocyanin +A Dv: hemocyanins / B D: haemocyanins + +# hemocyte (level 70) +A Dv: hemocyte / B D: haemocyte +A Dv: hemocytes / B D: haemocytes +A Dv: hemocyte's / B D: haemocyte's + +# hemocytoblast (level 95) +A Dv: hemocytoblast / B D: haemocytoblast +A Dv: hemocytoblast's / B D: haemocytoblast's + +# hemocytoblastic (level 95) +A Dv: hemocytoblastic / B D: haemocytoblastic + +# hemocytometer (level 80) +A Dv: hemocytometer / B D: haemocytometer + +# hemodialysis (level 70) +A C Dv: hemodialysis / B D: haemodialysis +A C Dv: hemodialyses / B D: haemodialyses +A C Dv: hemodialysis's / B D: haemodialysis's + +# hemodilution (level 80) +A Dv: hemodilution / B D: haemodilution + +# hemodynamic (level 80) +A Dv: hemodynamic / B D: haemodynamic +A Dv: hemodynamics / B D: haemodynamics +A Dv: hemodynamics's / B D: haemodynamics's + +# hemoflagellate (level 80) +A Dv: hemoflagellate / B D: haemoflagellate +A Dv: hemoflagellate's / B D: haemoflagellate's + +# hemoglobic (level 95) +A Dv: hemoglobic / B D: haemoglobic + +# hemoglobin (level 35) +A C Dv: hemoglobin / B D: haemoglobin +A C Dv: hemoglobin's / B D: haemoglobin's + +# hemoglobinopathy (level 80) +A Dv: hemoglobinopathy / B D: haemoglobinopathy +A Dv: hemoglobinopathies / B D: haemoglobinopathies + +# hemoglobinous (level 80) +A Dv: hemoglobinous / B D: haemoglobinous + +# hemoglobinuria (level 80) +A Dv: hemoglobinuria / B D: haemoglobinuria +A Dv: hemoglobinuria's / B D: haemoglobinuria's + +# hemogram (level 95) +A Dv: hemogram / B D: haemogram + +# hemoid (level 70) +A Dv: hemoid / B D: haemoid + +# hemolysin (level 70) +A Dv: hemolysin / B D: haemolysin +A Dv: hemolysin's / B D: haemolysin's + +# hemolysis (level 70) +A C Dv: hemolysis / B D: haemolysis + +# hemolytic (level 80) +A Dv: hemolytic / B D: haemolytic + +# hemometer (level 95) +A Dv: hemometer / B D: haemometer + +# Hemon (level 95) +A Dv: Hemon / B D: Haemon +A Dv: Hemon's / B D: Haemon's + +# hemophile (level 95) +A Dv: hemophile / B D: haemophile +A Dv: hemophile's / B D: haemophile's + +# hemophilia (level 35) +A C Dv: hemophilia / B D: haemophilia +A C Dv: hemophilia's / B D: haemophilia's + +# hemophiliac (level 40) +A C Dv: hemophiliac / B D: haemophiliac +A C Dv: hemophiliacs / B D: haemophiliacs +A C Dv: hemophiliac's / B D: haemophiliac's + +# hemophilic (level 70) +A C Dv: hemophilic / B D: haemophilic + +# hemopod (level 95) +A Dv: hemopod / B D: haemopod + +# hemopoiesis (level 80) +A Dv: hemopoiesis / B D: haemopoiesis + +# hemoptysis (level 80) +A Dv: hemoptysis / B D: haemoptysis +A Dv: hemoptyses / B D: haemoptyses +A Dv: hemoptysis's / B D: haemoptysis's + +# hemorrhage (level 35) +A C Dv: hemorrhage / B D: haemorrhage +A C Dv: hemorrhage's / B D: haemorrhage's +A C Dv: hemorrhaged / B D: haemorrhaged +A C Dv: hemorrhaging / B D: haemorrhaging +A C Dv: hemorrhages / B D: haemorrhages + +# hemorrhoid (level 40) +A C Dv: hemorrhoid / B D: haemorrhoid +A C Dv: hemorrhoids / B D: haemorrhoids + +# hemorrhoidal (level 70) +A C Dv: hemorrhoidal / B D: haemorrhoidal + +# hemorrhoidectomy (level 70) +A Dv: hemorrhoidectomy / B D: haemorrhoidectomy +A Dv: hemorrhoidectomy's / B D: haemorrhoidectomy's + +# hemosporid (level 95) +A Dv: hemosporid / B D: haemosporid + +# hemosporidian (level 95) +A Dv: hemosporidian / B D: haemosporidian + +# hemostasia (level 80) +A Dv: hemostasia / B D: haemostasia + +# hemostasis (level 70) +A Dv: hemostasis / B D: haemostasis +A Dv: hemostases / B D: haemostases +A Dv: hemostasis's / B D: haemostasis's + +# hemostatic (level 70) +A Dv: hemostatic / B D: haemostatic + +# hemothorax (level 95) +A Dv: hemothorax / B D: haemothorax +A Dv: hemothorax's / B D: haemothorax's + +# hemotoxic (level 95) +A Dv: hemotoxic / B D: haemotoxic + +# hemotoxin (level 95) +A Dv: hemotoxin / B D: haemotoxin +A Dv: hemotoxin's / B D: haemotoxin's + +# heparinize (level 95) +A Z: heparinize / B: heparinise + +# hepatization (level 80) +A Z: hepatization / B: hepatisation +A Z: hepatizations / B: hepatisations +A Z: hepatization's / B: hepatisation's + +# hepatize (level 80) +A Z: hepatize / B: hepatise +A Z: hepatized / B: hepatised +A Z: hepatizing / B: hepatising +A Z: hepatizes / B: hepatises + +# hepatorrhea (level 95) +A Dv: hepatorrhea / B D: hepatorrhoea + +# heraldize (level 95) +A Z: heraldize / B: heraldise +A Z: heraldizes / B: heraldises + +# herborization (level 80) +A Z: herborization / B: herborisation +A Z: herborizations / B: herborisations + +# herborize (level 80) +A Z: herborize / B: herborise +A Z: herborized / B: herborised +A Z: herborizing / B: herborising +A Z: herborizes / B: herborises + +# heredes (level 70) +A: heredes / B: haeredes + +# hereticize (level 95) +A Z: hereticize / B: hereticise +A Z: hereticizes / B: hereticises + +# heroinize (level 95) +A Z: heroinize / B: heroinise +A Z: heroinizes / B: heroinises + +# heroization (level 95) +A Z: heroization / B: heroisation +A Z: heroizations / B: heroisations +A Z: heroization's / B: heroisation's + +# heroize (level 80) +A Z: heroize / B: heroise +A Z: heroized / B: heroised +A Z: heroizing / B: heroising +A Z: heroizes / B: heroises + +# het (level 80) +A: het / B: haet +A: hets / B: haets + +# heterecious (level 70) +A: heterecious / B: heteroecious + +# heteric (level 80) +A Dv: heteric / B D: hetaeric + +# heterism (level 70) +A Dv: heterism / B D: hetaerism + +# hexachlorethane (level 80) +A: hexachlorethane / B: hexachloroethane +A: hexachlorethanes / B: hexachloroethanes + +# hexametrize (level 80) +A Z: hexametrize / B: hexametrise +A Z: hexametrized / B: hexametrised +A Z: hexametrizing / B: hexametrising +A Z: hexametrizes / B: hexametrises + +# hexestrol (level 95) +A: hexestrol / B: hexoestrol + +# Hibernicize (level 80) +A Z: Hibernicize / B: Hibernicise +A Z: Hibernicize's / B: Hibernicise's +A Z: Hibernicized / B: Hibernicised +A Z: Hibernicized's / B: Hibernicised's +A Z: Hibernicizing / B: Hibernicising +A Z: Hibernicizing's / B: Hibernicising's +A Z: hibernicize / B: hibernicise +A Z: hibernicized / B: hibernicised +A Z: hibernicizing / B: hibernicising +A Z: hibernicizes / B: hibernicises + +# hibernization (level 80) +A Z: hibernization / B: hibernisation +A Z: hibernizations / B: hibernisations + +# hibernize (level 80) +A Z: hibernize / B: hibernise +A Z: hibernized / B: hibernised +A Z: hibernizing / B: hibernising +A Z: hibernizes / B: hibernises + +# hiccup (level 35) +A B C: hiccuped / Cv: hiccupped +A B C: hiccuping / Cv: hiccupping + +# hierarchize (level 70) +A Z: hierarchize / B: hierarchise +A Z: hierarchized / B: hierarchised +A Z: hierarchizing / B: hierarchising + +# highfalutin (level 50) +_: highfalutin / _V: hifalutin / _V: highfaluting + +# high_jinks (level 55) +_: high_jinks / _V: hijinks + +# hijack (level 35) +_: hijack / _V: highjack +_: hijacked / _V: highjacked +_: hijacking / _V: highjacking +_: hijacks / _V: highjacks +_: hijacks's / _V: highjack's + +# hijacker (level 40) +_: hijacker / _V: highjacker +_: hijackers / _V: highjackers +_: hijacker's / _V: highjacker's + +# hilloed (level 80) +A: hilloed / B: hilloaed + +# Hinduize (level 80) +A Z: Hinduize / B: Hinduise +A Z: Hinduized / B: Hinduised +A Z: Hinduized's / B: Hinduised's +A Z: Hinduizing / B: Hinduising +A Z: Hinduizes / B: Hinduises +A Z: Hinduize's / B: Hinduise's +A Z: Hinduizing's / B: Hinduising's + +# hippie (level 35) +A Bv C: hippie / Av B Cv: hippy | +A Av B Bv: hippies | +A Bv C: hippie's / Av B Cv: hippy's | +A Av B Bv: hippy | + +# hippieness (level 80) +_: hippieness / _v: hippiness +_: hippienesses / _v: hippinesses +_: hippieness's / _v: hippiness's + +# hirsel (level 80) +A: hirseled / B: hirselled +A: hirseling / B: hirselling + +# Hispanicization (level 80) +A Z: Hispanicization / B: Hispanicisation +A Z: Hispanicizations / B: Hispanicisations +A Z: Hispanicization's / B: Hispanicisation's + +# Hispanicize (level 70) +A Z: Hispanicize / B: Hispanicise +A Z: Hispanicized / B: Hispanicised +A Z: Hispanicizing / B: Hispanicising +A Z: Hispanicizes / B: Hispanicises +A Z: hispanicize / B: hispanicise +A Z: hispanicized / B: hispanicised +A Z: hispanicizing / B: hispanicising +A Z: hispanicizes / B: hispanicises + +# Hispaniolize (level 80) +A Z: Hispaniolize / B: Hispaniolise +A Z: Hispaniolized / B: Hispaniolised +A Z: Hispaniolized's / B: Hispaniolised's +A Z: Hispaniolizing / B: Hispaniolising +A Z: Hispaniolizes / B: Hispaniolises +A Z: Hispaniolize's / B: Hispaniolise's +A Z: Hispaniolizing's / B: Hispaniolising's +A Z: hispaniolize / B: hispaniolise +A Z: hispaniolized / B: hispaniolised +A Z: hispaniolizing / B: hispaniolising +A Z: hispaniolizes / B: hispaniolises + +# historicize (level 80) +A Z: historicize / B: historicise +A Z: historicized / B: historicised +A Z: historicizing / B: historicising +A Z: historicizes / B: historicises + +# hmm (level 55) +_: hmm / _v: hm + +# hoagie (level 50) +_: hoagie / _V: hoagy +_: hoagie's / _V: hoagy's +_ _V: hoagies + +# Hollywoodize (level 80) +A Z: Hollywoodize / B: Hollywoodise +A Z: Hollywoodized / B: Hollywoodised +A Z: Hollywoodized's / B: Hollywoodised's +A Z: Hollywoodizing / B: Hollywoodising +A Z: Hollywoodizes / B: Hollywoodises +A Z: Hollywoodize's / B: Hollywoodise's +A Z: Hollywoodizing's / B: Hollywoodising's + +# homeoblastic (level 95) +A B: homeoblastic / Bv: homoeoblastic + +# homeobox (level 80) +A B: homeobox / Bv: homoeobox + +# homeochromatic (level 95) +A B: homeochromatic / Bv: homoeochromatic + +# homeochronous (level 95) +A B: homeochronous / Bv: homoeochronous + +# homeocrystalline (level 95) +A B: homeocrystalline / Bv: homoeocrystalline + +# homeogenic (level 95) +A B: homeogenic / Bv: homoeogenic + +# homeogenous (level 95) +A B: homeogenous / Bv: homoeogenous + +# homeoid (level 95) +A B: homeoid / Bv: homoeoid + +# homeokinesis (level 95) +A B: homeokinesis / Bv: homoeokinesis + +# homeomeric (level 80) +A B: homeomeric / Bv: homoeomeric + +# homeomerous (level 80) +A B: homeomerous / Bv: homoeomerous + +# homeomery (level 80) +A B: homeomery / Bv: homoeomery +A B: homeomeries / Bv: homoeomeries + +# homeomorph (level 80) +A B: homeomorph / Bv: homoeomorph +A B: homeomorphs / Bv: homoeomorphs +A B: homeomorph's / Bv: homoeomorph's + +# homeomorphic (level 80) +A B: homeomorphic / Bv: homoeomorphic + +# homeomorphous (level 80) +A B: homeomorphous / Bv: homoeomorphous + +# homeomorphy (level 80) +A B: homeomorphy / Bv: homoeomorphy +A B: homeomorphies / Bv: homoeomorphies + +# homeopath (level 55) +A B C: homeopath / Bv: homoeopath +A B C: homeopaths / Bv: homoeopaths +A B C: homeopath's / Bv: homoeopath's + +# homeopathic (level 40) +A B C: homeopathic / Bv: homoeopathic +A B C: homeopathicer / Bv: homoeopathicer +A B C: homeopathicest / Bv: homoeopathicest + +# homeopathically (level 70) +A B: homeopathically / Bv: homoeopathically +A B: homeopathicallier / Bv: homoeopathicallier +A B: homeopathicalliest / Bv: homoeopathicalliest + +# homeopathician (level 95) +A B: homeopathician / Bv: homoeopathician + +# homeopathicity (level 95) +A B: homeopathicity / Bv: homoeopathicity + +# homeopathist (level 70) +A B: homeopathist / Bv: homoeopathist +A B: homeopathists / Bv: homoeopathists +A B: homeopathist's / Bv: homoeopathist's + +# homeopathy (level 40) +A B C: homeopathy / Bv: homoeopathy +A B C: homeopathies / Bv: homoeopathies +A B C: homeopathy's / Bv: homoeopathy's + +# homeophony (level 95) +A B: homeophony / Bv: homoeophony + +# homeoplasia (level 95) +A B: homeoplasia / Bv: homoeoplasia + +# homeoplastic (level 95) +A B: homeoplastic / Bv: homoeoplastic + +# homeoplasy (level 95) +A B: homeoplasy / Bv: homoeoplasy + +# homeopolar (level 95) +A B: homeopolar / Bv: homoeopolar + +# homeosis (level 80) +A B: homeosis / Bv: homoeosis +A B: homeoses / Bv: homoeoses + +# homeostasis (level 60) +A B: homeostasis / Bv: homoeostasis +A B: homeostases / Bv: homoeostases +A B: homeostasis's / Bv: homoeostasis's + +# homeostatic (level 60) +A B: homeostatic / Bv: homoeostatic + +# homeoteleuton (level 80) +A B: homeoteleuton / Bv: homoeoteleuton +A B: homeoteleutons / Bv: homoeoteleutons + +# homeothermal (level 80) +A B: homeothermal / Bv: homoeothermal + +# homeothermic (level 80) +A B: homeothermic / Bv: homoeothermic + +# homeothermous (level 80) +A B: homeothermous / Bv: homoeothermous + +# homeotic (level 80) +A B: homeotic / Bv: homoeotic + +# homeotype (level 95) +A B: homeotype / Bv: homoeotype + +# homeotypic (level 95) +A B: homeotypic / Bv: homoeotypic + +# homeotypical (level 95) +A B: homeotypical / Bv: homoeotypical + +# homeozoic (level 95) +A B: homeozoic / Bv: homoeozoic + +# homeward (level 35) +_: homeward / _v: homewards + +# homey (level 35) +_: homey / _V: homy | +_: homey / _v: homie | +_: homeys / _v: homies | +_: homey's / _v: homie's | + +# homeyness (level 50) +_: homeyness / _v: hominess +_: homeynesses / _v: hominesses +_: homeyness's / _v: hominess's + +# hominization (level 80) +A Z: hominization / B: hominisation + +# hominized (level 80) +A Z: hominized / B: hominised + +# homogenization (level 50) +A Z: homogenization / B: homogenisation +A Z: homogenizations / B: homogenisations +A Z: homogenization's / B: homogenisation's + +# homogenize (level 35) +A Z: homogenize / B: homogenise +A Z: homogenized / B: homogenised +A Z: homogenizing / B: homogenising +A Z: homogenizes / B: homogenises + +# homogenizer (level 70) +A Z: homogenizer / B: homogeniser +A Z: homogenizers / B: homogenisers +A Z: homogenizer's / B: homogeniser's + +# homolog (level 70) +A B: homologue / Av: homolog +A B: homologues / Av: homologs +A B: homologue's / Av: homolog's + +# homologization (level 99) +A Z: homologization / B: homologisation + +# homologize (level 70) +A Z: homologize / B: homologise +A Z: homologized / B: homologised +A Z: homologizing / B: homologising +A Z: homologizes / B: homologises + +# homologizer (level 80) +A Z: homologizer / B: homologiser +A Z: homologizers / B: homologisers +A Z: homologizer's / B: homologiser's + +# honky (level 55) +_: honky / _v: honkie / _V: honkey +_ _v: honkies / _V: honkeys +_: honky's / _v: honkie's / _V: honkey's + +# honor (level 20) +A Cv DV: honor / B C D: honour +A Cv DV: honored / B C D: honoured +A Cv DV: honoring / B C D: honouring +A Cv DV: honors / B C D: honours +A Cv DV: honor's / B C D: honour's + +# honorability (level 80) +A Cv DV: honorability / B C D: honourability +A Cv DV: honorabilities / B C D: honourabilities +A Cv DV: honorability's / B C D: honourability's + +# honorable (level 35) +A Cv DV: honorable / B C D: honourable +A Cv DV: honorabler / B C D: honourabler +A Cv DV: honorables / B C D: honourables +A Cv DV: honorablest / B C D: honourablest +A Cv DV: honorable's / B C D: honourable's + +# honorableness (level 60) +A Cv DV: honorableness / B C D: honourableness +A Cv DV: honorablenesses / B C D: honourablenesses +A Cv DV: honorableness's / B C D: honourableness's + +# honorableship (level 95) +A Cv DV: honorableship / B C D: honourableship +A Cv DV: honorableships / B C D: honourableships +A Cv DV: honorableship's / B C D: honourableship's + +# honorably (level 40) +A Cv DV: honorably / B C D: honourably +A Cv DV: honorablier / B C D: honourablier +A Cv DV: honorablies / B C D: honourablies +A Cv DV: honorabliest / B C D: honourabliest + +# honoree (level 60) +A Cv DV: honoree / B C D: honouree +A Cv DV: honorees / B C D: honourees +A Cv DV: honoree's / B C D: honouree's + +# honorer (level 60) +A Cv DV: honorer / B C D: honourer +A Cv DV: honorers / B C D: honourers +A Cv DV: honorer's / B C D: honourer's + +# honorless (level 80) +A Cv DV: honorless / B C D: honourless +A Cv DV: honorlesser / B C D: honourlesser +A Cv DV: honorlessest / B C D: honourlessest + +# honorlesses (level 99) +A Cv DV: honorlesses / B C D: honourlesses + +# hooch (level 50) +_: hooch / _v: hootch | :2 +_: hooches / _v: hootches | hut +_: hooch's / _v: hootch's | hut + +# hoodlumize (level 95) +A Z: hoodlumize / B: hoodlumise +A Z: hoodlumizes / B: hoodlumises + +# hooky (level 40) +_: hooky / _V: hookey +_: hookies / _V: hookeys +_: hooky's / _V: hookey's + +# hooliganize (level 95) +A Z: hooliganize / B: hooliganise +A Z: hooliganizes / B: hooliganises + +# Hoosierize (level 95) +A Z: Hoosierize / B: Hoosierise +A Z: Hoosierizes / B: Hoosierises +A Z: Hoosierize's / B: Hoosierise's + +# Hooverize (level 95) +A Z: Hooverize / B: Hooverise +A Z: Hooverizes / B: Hooverises +A Z: Hooverize's / B: Hooverise's + +# hore (level 80) +A: hore / B: horae + +# horizontalization (level 95) +A Z: horizontalization / B: horizontalisation +A Z: horizontalizations / B: horizontalisations +A Z: horizontalization's / B: horizontalisation's + +# horizontalize (level 95) +A Z: horizontalize / B: horizontalise +A Z: horizontalizes / B: horizontalises + +# hormonize (level 95) +A Z: hormonize / B: hormonise +A Z: hormonizes / B: hormonises + +# horrorize (level 95) +A Z: horrorize / B: horrorise +A Z: horrorizes / B: horrorises + +# horsey (level 50) +_: horsey / _.: horsy + +# hospitalization (level 35) +A Z: hospitalization / B: hospitalisation +A Z: hospitalizations / B: hospitalisations +A Z: hospitalization's / B: hospitalisation's + +# hospitalize (level 35) +A Z: hospitalize / B: hospitalise +A Z: hospitalized / B: hospitalised +A Z: hospitalizing / B: hospitalising +A Z: hospitalizes / B: hospitalises + +# hostilize (level 95) +A Z: hostilize / B: hostilise +A Z: hostilizes / B: hostilises + +# hotelization (level 95) +A Z: hotelization / B: hotelisation +A Z: hotelizations / B: hotelisations +A Z: hotelization's / B: hotelisation's + +# hotelize (level 95) +A Z: hotelize / B: hotelise +A Z: hotelizes / B: hotelises + +# housel (level 80) +A: houseled / B: houselled +A: houseling / B: houselling +A: houselings / B: housellings + +# hovel (level 80) +A: hoveled / B: hovelled +A: hoveling / B: hovelling + +# hoveler (level 80) +A: hoveler / B: hoveller +A: hovelers / B: hovellers + +# hovercraft (level 50) +_: hovercraft / _v: hovercrafts | -- plural + +# hucksterize (level 95) +A Z: hucksterize / B: hucksterise +A Z: hucksterizes / B: hucksterises + +# huer (level 80) +A: huer / B: hure + +# humanitarianize (level 95) +A Z: humanitarianize / B: humanitarianise +A Z: humanitarianizes / B: humanitarianises + +# humanization (level 50) +A Z: humanization / B: humanisation +A Z: humanizations / B: humanisations +A Z: humanization's / B: humanisation's + +# humanize (level 35) +A Z: humanize / B: humanise +A Z: humanized / B: humanised +A Z: humanizing / B: humanising +A Z: humanizes / B: humanises + +# humanizer (level 50) +A Z: humanizer / B: humaniser +A Z: humanizers / B: humanisers +A Z: humanizer's / B: humaniser's + +# hummus (level 50) +_: hummus / _V: hoummos / _-: houmus / _-: humus | :1 +_: humus | :2 + +# humongous (level 50) +_: humongous / _V: humungous + +# humor (level 20) +A Cv DV: humor / B C D: humour +A Cv DV: humored / B C D: humoured +A Cv DV: humoring / B C D: humouring +A Cv DV: humors / B C D: humours +A Cv DV: humor's / B C D: humour's + +# humoral (level 70) +A B: humoral / B-: humoural + +# humorer (level 95) +A Cv DV: humorer / B C D: humourer +A Cv DV: humorers / B C D: humourers + +# humorful (level 80) +A Cv DV: humorful / B C D: humourful + +# humorize (level 95) +A Z: humorize / B: humorise +A Z: humorizes / B: humorises + +# humorless (level 50) +A Cv DV: humorless / B C D: humourless +A Cv DV: humorlesser / B C D: humourlesser +A Cv DV: humorlessest / B C D: humourlessest + +# humorlesses (level 99) +A Cv DV: humorlesses / B C D: humourlesses + +# humorlessness (level 50) +A Cv DV: humorlessness / B C D: humourlessness +A Cv DV: humorlessnesses / B C D: humourlessnesses +A Cv DV: humorlessness's / B C D: humourlessness's + +# humorsome (level 80) +A Cv DV: humorsome / B C D: humoursome + +# humorsomeness (level 80) +A Cv DV: humorsomeness / B C D: humoursomeness + +# hurrah (level 35) +A B: hurrah / Av AV1 Bv: hooray / AV2: hoorah / AV3 A- Bv: hurray | :1 +A B: hurrahed / AV1 AV2 Bv: hoorayed / AV3 Bv: hurrayed | :1 +A B: hurrahing / AV1 AV2 Bv: hooraying / AV3 Bv: hurraying | :1 +A B: hurrahs / Av AV1 Bv: hoorays / AV2: hoorahs / AV3 Bv: hurrays / A-: hurrahes | :1 +A B: hurrah's / Av AV1 Bv: hooray's / AV2: hoorah's / AV3 Bv: hurray's | :1 +A B: hooray / Av: hurrah / Av: hurray | :2 + +# hurricanize (level 95) +A Z: hurricanize / B: hurricanise +A Z: hurricanizes / B: hurricanises + +# huzzah (level 60) +_: huzzah / _v: huzza +_: huzzahed / _v: huzzaed +_: huzzah's / _v: huzza's +_: huzzahes / _v: huzzas +_: huzzahing / _v: huzzaing + +# hyalinization (level 80) +A Z: hyalinization / B: hyalinisation +A Z: hyalinizations / B: hyalinisations +A Z: hyalinization's / B: hyalinisation's + +# hyalinize (level 80) +A Z: hyalinize / B: hyalinise +A Z: hyalinized / B: hyalinised +A Z: hyalinizing / B: hyalinising +A Z: hyalinizes / B: hyalinises + +# hybridizable (level 80) +A Z: hybridizable / B: hybridisable +A Z: hybridizabler / B: hybridisabler +A Z: hybridizables / B: hybridisables +A Z: hybridizablest / B: hybridisablest +A Z: hybridizable's / B: hybridisable's + +# hybridization (level 60) +A Z: hybridization / B: hybridisation +A Z: hybridizations / B: hybridisations +A Z: hybridization's / B: hybridisation's + +# hybridize (level 50) +A Z: hybridize / B: hybridise +A Z: hybridized / B: hybridised +A Z: hybridizing / B: hybridising +A Z: hybridizes / B: hybridises + +# hybridizer (level 70) +A Z: hybridizer / B: hybridiser +A Z: hybridizers / B: hybridisers +A Z: hybridizer's / B: hybridiser's + +# hydremia (level 80) +A Dv: hydremia / B D: hydraemia +A Dv: hydremias / B D: hydraemias +A Dv: hydremia's / B D: hydraemia's + +# hydremic (level 95) +A Dv: hydremic / B D: hydraemic + +# hydrocele (level 70) +A Dv: hydrocele / B D: hydrocoele + +# hydrocephalus (level 60) +_: hydrocephalus / _V: hydrocephaly +_: hydrocephaluses / _V: hydrocephalies +_: hydrocephalus's / _V: hydrocephaly's + +# hydrogenization (level 80) +A Z: hydrogenization / B: hydrogenisation +A Z: hydrogenizations / B: hydrogenisations +A Z: hydrogenization's / B: hydrogenisation's + +# hydrogenize (level 70) +A Z: hydrogenize / B: hydrogenise +A Z: hydrogenized / B: hydrogenised +A Z: hydrogenizing / B: hydrogenising +A Z: hydrogenizes / B: hydrogenises + +# hydrolize (level 95) +A Z: hydrolize / B: hydrolise + +# hydrolyzable (level 80) +A Z: hydrolyzable / B: hydrolysable +A Z: hydrolyzabler / B: hydrolysabler +A Z: hydrolyzables / B: hydrolysables +A Z: hydrolyzablest / B: hydrolysablest +A Z: hydrolyzable's / B: hydrolysable's + +# hydrolyzate (level 70) +A Z: hydrolyzate / B: hydrolysate +A Z: hydrolyzates / B: hydrolysates + +# hydrolyzation (level 70) +A Z: hydrolyzation / B: hydrolysation +A Z: hydrolyzation's / B: hydrolysation's + +# hydrolyze (level 60) +A C: hydrolyze / B Cv: hydrolyse +A C: hydrolyzed / B Cv: hydrolysed +A C: hydrolyzing / B Cv: hydrolysing +A C: hydrolyzes / B Cv: hydrolyses +A B: hydrolyses | [hydrolysis] + +# hydrolyzer (level 95) +A Z: hydrolyzer / B: hydrolyser +A Z: hydrolyzer's / B: hydrolyser's + +# hydrorrhea (level 95) +A Dv: hydrorrhea / B D: hydrorrhoea + +# hydroxylization (level 95) +A Z: hydroxylization / B: hydroxylisation +A Z: hydroxylizations / B: hydroxylisations +A Z: hydroxylization's / B: hydroxylisation's + +# hydroxylize (level 95) +A Z: hydroxylize / B: hydroxylise +A Z: hydroxylizes / B: hydroxylises + +# hyena (level 35) +_ _V1: hyena / _V2: hyaena +_: hyenas / _V1: hyena / _V2: hyaenas / _V2: hyaena | +_ _V1: hyena's / _V2: hyaena's +## If hyaena not variant than: _2: hyaenas / _V2: hyaena + +# hyenic (level 80) +A: hyenic / B: hyaenic + +# hygienization (level 95) +A Z: hygienization / B: hygienisation +A Z: hygienizations / B: hygienisations +A Z: hygienization's / B: hygienisation's + +# hygienize (level 95) +A Z: hygienize / B: hygienise +A Z: hygienizes / B: hygienises + +# hymenean (level 80) +A Dv: hymenean / B D: hymenaean + +# hyperbolize (level 70) +A Z: hyperbolize / B: hyperbolise +A Z: hyperbolized / B: hyperbolised +A Z: hyperbolizing / B: hyperbolising +A Z: hyperbolizes / B: hyperbolises + +# hypercalcemia (level 80) +A Dv: hypercalcemia / B D: hypercalcaemia +A Dv: hypercalcemias / B D: hypercalcaemias + +# hypercalcinemia (level 95) +A Dv: hypercalcinemia / B D: hypercalcinaemia + +# hypercatharsises (level 99) +A: hypercatharsises / B: hypercatharses + +# hyperchloremia (level 95) +A Dv: hyperchloremia / B D: hyperchloraemia + +# hypercholesterolemia (level 80) +A Dv: hypercholesterolemia / B D: hypercholesterolaemia +A Dv: hypercholesterolemias / B D: hypercholesterolaemias + +# hypercivilization (level 95) +A Z: hypercivilization / B: hypercivilisation +A Z: hypercivilizations / B: hypercivilisations +A Z: hypercivilization's / B: hypercivilisation's + +# hypercivilized (level 80) +A Z: hypercivilized / B: hypercivilised +A Z: hypercivilizeds / B: hyperciviliseds +A Z: hypercivilized's / B: hypercivilised's + +# hypercriticize (level 80) +A Z: hypercriticize / B: hypercriticise +A Z: hypercriticized / B: hypercriticised +A Z: hypercriticizing / B: hypercriticising +A Z: hypercriticizes / B: hypercriticises + +# hypercryesthesia (level 95) +A: hypercryesthesia / B: hypercryaesthesia + +# hyperemia (level 70) +A Dv: hyperemia / B D: hyperaemia +A Dv: hyperemias / B D: hyperaemias +A Dv: hyperemia's / B D: hyperaemia's + +# hyperemic (level 80) +A Dv: hyperemic / B D: hyperaemic + +# hyperemphasize (level 95) +A Z: hyperemphasize / B: hyperemphasise +A Z: hyperemphasizes / B: hyperemphasises + +# hyperesthesia (level 70) +A Dv: hyperesthesia / B D: hyperaesthesia +A Dv: hyperesthesias / B D: hyperaesthesias +A Dv: hyperesthesia's / B D: hyperaesthesia's + +# hyperesthete (level 95) +A Dv: hyperesthete / B D: hyperaesthete +A Dv: hyperesthete's / B D: hyperaesthete's + +# hyperesthetic (level 80) +A Dv: hyperesthetic / B D: hyperaesthetic +A Dv: hyperestheticer / B D: hyperaestheticer +A Dv: hyperestheticest / B D: hyperaestheticest + +# hyperglycemic (level 70) +A Dv: hyperglycemic / B D: hyperglycaemic + +# hyperimmunization (level 80) +A Z: hyperimmunization / B: hyperimmunisation +A Z: hyperimmunizations / B: hyperimmunisations +A Z: hyperimmunization's / B: hyperimmunisation's + +# hyperimmunize (level 80) +A Z: hyperimmunize / B: hyperimmunise +A Z: hyperimmunizes / B: hyperimmunises + +# hyperinsulinization (level 95) +A Z: hyperinsulinization / B: hyperinsulinisation +A Z: hyperinsulinizations / B: hyperinsulinisations +A Z: hyperinsulinization's / B: hyperinsulinisation's + +# hyperinsulinize (level 95) +A Z: hyperinsulinize / B: hyperinsulinise +A Z: hyperinsulinizes / B: hyperinsulinises + +# hyperlipemia (level 80) +A Dv: hyperlipemia / B D: hyperlipaemia + +# hyperlipemic (level 80) +A Dv: hyperlipemic / B D: hyperlipaemic + +# hyperlipidemia (level 80) +A Dv: hyperlipidemia / B D: hyperlipidaemia + +# hypernatremia (level 80) +A Dv: hypernatremia / B D: hypernatraemia + +# hyperoxygenize (level 95) +A Z: hyperoxygenize / B: hyperoxygenise +A Z: hyperoxygenizes / B: hyperoxygenises + +# hyperparasitize (level 95) +A Z: hyperparasitize / B: hyperparasitise +A Z: hyperparasitizes / B: hyperparasitises + +# hyperpnea (level 80) +A Dv: hyperpnea / B D: hyperpnoea +A Dv: hyperpnea's / B D: hyperpnoea's + +# hyperrealize (level 95) +A Z: hyperrealize / B: hyperrealise +A Z: hyperrealizes / B: hyperrealises + +# hypersensitization (level 80) +A Z: hypersensitization / B: hypersensitisation +A Z: hypersensitizations / B: hypersensitisations +A Z: hypersensitization's / B: hypersensitisation's + +# hypersensitize (level 70) +A Z: hypersensitize / B: hypersensitise +A Z: hypersensitized / B: hypersensitised +A Z: hypersensitizing / B: hypersensitising +A Z: hypersensitizes / B: hypersensitises + +# hyperspiritualizing (level 95) +A Z: hyperspiritualizing / B: hyperspiritualising +A Z: hyperspiritualizings / B: hyperspiritualisings +A Z: hyperspiritualizing's / B: hyperspiritualising's + +# hyperthyroidization (level 95) +A Z: hyperthyroidization / B: hyperthyroidisation +A Z: hyperthyroidizations / B: hyperthyroidisations +A Z: hyperthyroidization's / B: hyperthyroidisation's + +# hyperthyroidize (level 95) +A Z: hyperthyroidize / B: hyperthyroidise +A Z: hyperthyroidizes / B: hyperthyroidises + +# hypervitalization (level 95) +A Z: hypervitalization / B: hypervitalisation +A Z: hypervitalizations / B: hypervitalisations +A Z: hypervitalization's / B: hypervitalisation's + +# hypervitalize (level 95) +A Z: hypervitalize / B: hypervitalise +A Z: hypervitalizes / B: hypervitalises + +# hypesthesia (level 70) +A Dv: hypesthesia / B D: hypaesthesia +A Dv: hypesthesias / B D: hypaesthesias +A Dv: hypesthesia's / B D: hypaesthesia's + +# hypesthesic (level 80) +A Dv: hypesthesic / B D: hypaesthesic + +# hypethral (level 70) +A Dv: hypethral / B D: hypaethral + +# hyphenization (level 80) +A Z: hyphenization / B: hyphenisation +A Z: hyphenizations / B: hyphenisations +A Z: hyphenization's / B: hyphenisation's + +# hyphenize (level 80) +A Z: hyphenize / B: hyphenise +A Z: hyphenized / B: hyphenised +A Z: hyphenizing / B: hyphenising +A Z: hyphenizes / B: hyphenises + +# hypnoidize (level 80) +A Z: hypnoidize / B: hypnoidise +A Z: hypnoidized / B: hypnoidised +A Z: hypnoidizing / B: hypnoidising +A Z: hypnoidizes / B: hypnoidises + +# hypnopedia (level 80) +A Dv: hypnopedia / B D: hypnopaedia +A Dv: hypnopedias / B D: hypnopaedias + +# hypnotizability (level 80) +A Z: hypnotizability / B: hypnotisability +A Z: hypnotizabilities / B: hypnotisabilities +A Z: hypnotizability's / B: hypnotisability's + +# hypnotizable (level 70) +A Z: hypnotizable / B: hypnotisable +A Z: hypnotizabler / B: hypnotisabler +A Z: hypnotizables / B: hypnotisables +A Z: hypnotizablest / B: hypnotisablest +A Z: hypnotizable's / B: hypnotisable's + +# hypnotization (level 70) +A Z: hypnotization / B: hypnotisation +A Z: hypnotizations / B: hypnotisations +A Z: hypnotization's / B: hypnotisation's + +# hypnotize (level 35) +A Z: hypnotize / B: hypnotise +A Z: hypnotized / B: hypnotised +A Z: hypnotizing / B: hypnotising +A Z: hypnotizes / B: hypnotises + +# hypnotizer (level 70) +A Z: hypnotizer / B: hypnotiser +A Z: hypnotizers / B: hypnotisers +A Z: hypnotizer's / B: hypnotiser's + +# hypocenter (level 70) +A: hypocenter / B: hypocentre +A: hypocenters / B: hypocentres +A: hypocenter's / B: hypocentre's + +# hypogeal (level 70) +A Dv: hypogeal / B D: hypogaeal + +# hypogean (level 80) +A Dv: hypogean / B D: hypogaean + +# hypogeic (level 95) +A Dv: hypogeic / B D: hypogaeic + +# hypogeous (level 70) +A Dv: hypogeous / B D: hypogaeous + +# hypogeum (level 70) +A Dv: hypogeum / B D: hypogaeum +A Dv: hypogea / B D: hypogaea + +# hypomagnesemia (level 80) +A Dv: hypomagnesemia / B D: hypomagnesaemia +A Dv: hypomagnesemias / B D: hypomagnesaemias + +# hypomenorrhea (level 80) +A Dv: hypomenorrhea / B D: hypomenorrhoea +A Dv: hypomenorrheas / B D: hypomenorrhoeas + +# hypophysectomize (level 80) +A Z: hypophysectomize / B: hypophysectomise +A Z: hypophysectomized / B: hypophysectomised + +# hypopnea (level 80) +A Dv: hypopnea / B D: hypopnoea +A Dv: hypopnea's / B D: hypopnoea's + +# hyposensitization (level 80) +A Z: hyposensitization / B: hyposensitisation +A Z: hyposensitization's / B: hyposensitisation's + +# hyposensitize (level 70) +A Z: hyposensitize / B: hyposensitise + +# hypostasize (level 70) +A Z: hypostasize / B: hypostasise +A Z: hypostasized / B: hypostasised +A Z: hypostasizing / B: hypostasising +A Z: hypostasizes / B: hypostasises + +# hypostatization (level 80) +A Z: hypostatization / B: hypostatisation +A Z: hypostatizations / B: hypostatisations +A Z: hypostatization's / B: hypostatisation's + +# hypostatize (level 70) +A Z: hypostatize / B: hypostatise +A Z: hypostatized / B: hypostatised +A Z: hypostatizing / B: hypostatising +A Z: hypostatizes / B: hypostatises + +# hypothesize (level 35) +A Z: hypothesize / B: hypothesise +A Z: hypothesized / B: hypothesised +A Z: hypothesizing / B: hypothesising +A Z: hypothesizes / B: hypothesises + +# hypothesizer (level 70) +A Z: hypothesizer / B: hypothesiser +A Z: hypothesizers / B: hypothesisers +A Z: hypothesizer's / B: hypothesiser's + +# hypothetize (level 80) +A Z: hypothetize / B: hypothetise +A Z: hypothetized / B: hypothetised +A Z: hypothetizing / B: hypothetising +A Z: hypothetizes / B: hypothetises + +# hypoxemia (level 80) +A Dv: hypoxemia / B D: hypoxaemia +A Dv: hypoxemias / B D: hypoxaemias + +# hypoxemic (level 80) +A Dv: hypoxemic / B D: hypoxaemic + +# hysterectomize (level 70) +A Z: hysterectomize / B: hysterectomise +A Z: hysterectomized / B: hysterectomised +A Z: hysterectomizing / B: hysterectomising +A Z: hysterectomizes / B: hysterectomises + +# ichneumonized (level 95) +A Z: ichneumonized / B: ichneumonised +A Z: ichneumonizeds / B: ichneumoniseds +A Z: ichneumonized's / B: ichneumonised's + +# ichorrhea (level 95) +A Dv: ichorrhea / B D: ichorrhoea + +# ichorrhemia (level 95) +A Dv: ichorrhemia / B D: ichorrhaemia + +# icon (level 20) +A B: icon / AV: ikon | :1 +A B: icons / AV: ikons | :1 +A B: icon's / AV: ikon's | :1 +A B: icon / AV Bv: ikon | :2 +A B: icons / AV Bv: ikons | :2 +A B: icon's / AV Bv: ikon's | :2 + +# iconic (level 55) +_: iconic / _V: ikonic + +# iconically (level 70) +_: iconically / _V: ikonically + +# iconize (level 80) +A Z: iconize / B: iconise +A Z: iconized / B: iconised +A Z: iconizing / B: iconising +A Z: iconizes / B: iconises + +# Idea (level 80) +A: Idea / B: Idaea +A: Idea's / B: Idaea's + +# idealization (level 50) +A Z: idealization / B: idealisation +A Z: idealizations / B: idealisations +A Z: idealization's / B: idealisation's + +# idealize (level 35) +A Z: idealize / B: idealise +A Z: idealized / B: idealised +A Z: idealizing / B: idealising +A Z: idealizes / B: idealises + +# idealizer (level 70) +A Z: idealizer / B: idealiser +A Z: idealizers / B: idealisers +A Z: idealizer's / B: idealiser's + +# Idean (level 80) +A: Idean / B: Idaean +A: Idean's / B: Idaean's + +# ideologize (level 80) +A Z: ideologize / B: ideologise +A Z: ideologized / B: ideologised +A Z: ideologizing / B: ideologising + +# idiotize (level 95) +A Z: idiotize / B: idiotise +A Z: idiotized / B: idiotised +A Z: idiotizing / B: idiotising +A Z: idiotizes / B: idiotises + +# idolaster (level 95) +A: idolaster / B: idolastre + +# idolatrize (level 70) +A Z: idolatrize / B: idolatrise +A Z: idolatrized / B: idolatrised +A Z: idolatrizing / B: idolatrising +A Z: idolatrizes / B: idolatrises + +# idolatrizer (level 95) +A Z: idolatrizer / B: idolatriser +A Z: idolatrizer's / B: idolatriser's + +# idolization (level 60) +A Z: idolization / B: idolisation +A Z: idolizations / B: idolisations +A Z: idolization's / B: idolisation's + +# idolize (level 35) +A Z: idolize / B: idolise +A Z: idolized / B: idolised +A Z: idolizing / B: idolising +A Z: idolizes / B: idolises + +# idolizer (level 70) +A Z: idolizer / B: idoliser +A Z: idolizers / B: idolisers +A Z: idolizer's / B: idoliser's + +# Idumea (level 95) +A: Idumea / B: Idumaea +A: Idumea's / B: Idumaea's + +# Idumean (level 80) +A: Idumean / B: Idumaean +A: Idumeans / B: Idumaeans + +# idyll (level 50) +_: idyll / _V: idyl +_: idylls / _V: idyls +_: idyll's / _V: idyl's + +# Ier (level 70) +A: Ier / B: Ire +A: Ier's / B: Ire's + +# ignitable (level 60) +_: ignitable / _V: ignitible + +# igniter (level 70) +_: igniter / _V: ignitor +_: igniters / _V: ignitors +_: igniter's / _V: ignitor's + +# ileocecal (level 95) +A: ileocecal / B: ileocaecal + +# Iliadize (level 95) +A Z: Iliadize / B: Iliadise +A Z: Iliadizes / B: Iliadises +A Z: Iliadize's / B: Iliadise's + +# illegalization (level 80) +A Z: illegalization / B: illegalisation +A Z: illegalizations / B: illegalisations +A Z: illegalization's / B: illegalisation's + +# illegalize (level 70) +A Z: illegalize / B: illegalise +A Z: illegalized / B: illegalised +A Z: illegalizing / B: illegalising +A Z: illegalizes / B: illegalises + +# illegitimatize (level 95) +A Z: illegitimatize / B: illegitimatise +A Z: illegitimatized / B: illegitimatised +A Z: illegitimatizing / B: illegitimatising +A Z: illegitimatizes / B: illegitimatises + +# illiberalize (level 80) +A Z: illiberalize / B: illiberalise +A Z: illiberalized / B: illiberalised +A Z: illiberalizing / B: illiberalising +A Z: illiberalizes / B: illiberalises + +# Illuminize (level 95) +A Z: Illuminize / B: Illuminise +A Z: Illuminizes / B: Illuminises + +# Imer (level 95) +A: Imer / B: Imre +A: Imer's / B: Imre's + +# immaterialization (level 95) +A Z: immaterialization / B: immaterialisation + +# immaterialize (level 70) +A Z: immaterialize / B: immaterialise +A Z: immaterialized / B: immaterialised +A Z: immaterializing / B: immaterialising +A Z: immaterializes / B: immaterialises + +# immiserization (level 80) +A Z: immiserization / B: immiserisation +A Z: immiserizations / B: immiserisations + +# immiserize (level 80) +A Z: immiserize / B: immiserise +A Z: immiserized / B: immiserised +A Z: immiserizing / B: immiserising +A Z: immiserizes / B: immiserises + +# immobilization (level 50) +A Z: immobilization / B: immobilisation +A Z: immobilizations / B: immobilisations +A Z: immobilization's / B: immobilisation's + +# immobilize (level 35) +A Z: immobilize / B: immobilise +A Z: immobilized / B: immobilised +A Z: immobilizing / B: immobilising +A Z: immobilizes / B: immobilises + +# immobilizer (level 55) +A Z: immobilizer / B: immobiliser +A Z: immobilizers / B: immobilisers + +# immoralize (level 95) +A Z: immoralize / B: immoralise +A Z: immoralized / B: immoralised +A Z: immoralizing / B: immoralising +A Z: immoralizes / B: immoralises + +# immortalizable (level 95) +A Z: immortalizable / B: immortalisable +A Z: immortalizabler / B: immortalisabler +A Z: immortalizables / B: immortalisables +A Z: immortalizablest / B: immortalisablest +A Z: immortalizable's / B: immortalisable's + +# immortalization (level 80) +A Z: immortalization / B: immortalisation +A Z: immortalizations / B: immortalisations +A Z: immortalization's / B: immortalisation's + +# immortalize (level 40) +A Z: immortalize / B: immortalise +A Z: immortalized / B: immortalised +A Z: immortalizing / B: immortalising +A Z: immortalizes / B: immortalises + +# immortalizer (level 80) +A Z: immortalizer / B: immortaliser +A Z: immortalizers / B: immortalisers +A Z: immortalizer's / B: immortaliser's + +# immunization (level 35) +A Z: immunization / B: immunisation +A Z: immunizations / B: immunisations +A Z: immunization's / B: immunisation's + +# immunize (level 35) +A Z: immunize / B: immunise +A Z: immunized / B: immunised +A Z: immunizing / B: immunising +A Z: immunizes / B: immunises + +# immunizer (level 80) +A Z: immunizer / B: immuniser +A Z: immunizer's / B: immuniser's + +# impactionize (level 95) +A Z: impactionize / B: impactionise +A Z: impactionizes / B: impactionises + +# impanel (level 50) +A B Cv: impanel / Av Bv C: empanel +A: impaneled / Av: empaneled / B Cv: impanelled / Bv C: empanelled +A: impaneling / Av: empaneling / B Cv: impanelling / Bv C: empanelling +A B Cv: impanels / Av Bv C: empanels + +# impanelment (level 70) +A B Cv: impanelment / Av Bv C: empanelment + +# impasted (level 80) +A: impasted / B: impastoed + +# imperialization (level 95) +A Z: imperialization / B: imperialisation +A Z: imperializations / B: imperialisations +A Z: imperialization's / B: imperialisation's + +# imperialize (level 80) +A Z: imperialize / B: imperialise +A Z: imperialized / B: imperialised +A Z: imperializing / B: imperialising +A Z: imperializes / B: imperialises + +# imperil (level 35) +A: imperiled / B: imperilled +A: imperiling / B: imperilling + +# imperscriptible (level 70) +A: imperscriptible / B: imprescriptible + +# impersonalization (level 80) +A Z: impersonalization / B: impersonalisation +A Z: impersonalizations / B: impersonalisations +A Z: impersonalization's / B: impersonalisation's + +# impersonalize (level 70) +A Z: impersonalize / B: impersonalise +A Z: impersonalized / B: impersonalised +A Z: impersonalizing / B: impersonalising +A Z: impersonalizes / B: impersonalises + +# impostor (level 35) +A B Cv: impostor / Av Bv C: imposter +A B Cv: impostors / Av Bv C: imposters +A B Cv: impostor's / Av Bv C: imposter's + +# improviser (level 60) +_: improviser / _v: improvisor +_: improvisers / _v: improvisors +_: improviser's / _v: improvisor's + +# improvizatorize (level 95) +A: improvizatorize / B: improvisatorise / Z: improvisatorize +A: improvizatorizes / B: improvisatorises / Z: improvisatorizes + +# incarnalize (level 95) +A Z: incarnalize / B: incarnalise + +# incarnalized (level 95) +A Z: incarnalized / B: incarnalised + +# incarnalizing (level 95) +A Z: incarnalizing / B: incarnalising + +# incenter (level 80) +A: incenter / B: incentre +A: incenters / B: incentres + +# incentivization (level 70) +A Z: incentivization / B: incentivisation +A Z: incentivizations / B: incentivisations + +# incentivize (level 70) +A Z: incentivize / B: incentivise +A Z: incentivized / B: incentivised +A Z: incentivizing / B: incentivising +A Z: incentivizes / B: incentivises + +# incerate (level 70) +A: incerate / B: increate + +# incognizable (level 80) +A Z: incognizable / B: incognisable + +# incognizance (level 80) +A Z: incognizance / B: incognisance +A Z: incognizances / B: incognisances +A Z: incognizance's / B: incognisance's + +# incognizant (level 70) +A Z: incognizant / B: incognisant + +# Indianization (level 70) +A Z: Indianization / B: Indianisation +A Z: Indianization's / B: Indianisation's + +# Indianize (level 70) +A Z: Indianize / B: Indianise +A Z: Indianized / B: Indianised +A Z: Indianizing / B: Indianising +A Z: Indianizes / B: Indianises + +# indigene (level 70) +A: indigene / B: indigenae + +# indigenization (level 80) +A Z: indigenization / B: indigenisation +A Z: indigenizations / B: indigenisations + +# indigenize (level 80) +A Z: indigenize / B: indigenise +A Z: indigenized / B: indigenised +A Z: indigenizing / B: indigenising +A Z: indigenizes / B: indigenises + +# individualization (level 60) +A Z: individualization / B: individualisation +A Z: individualizations / B: individualisations +A Z: individualization's / B: individualisation's + +# individualize (level 50) +A Z: individualize / B: individualise +A Z: individualized / B: individualised +A Z: individualizing / B: individualising +A Z: individualizes / B: individualises + +# individualizer (level 80) +A Z: individualizer / B: individualiser +A Z: individualizers / B: individualisers +A Z: individualizer's / B: individualiser's + +# individualizingly (level 95) +A Z: individualizingly / B: individualisingly + +# indraft (level 70) +A C: indraft / B: indraught +A C: indrafts / B: indraughts +A C: indraft's / B: indraught's + +# industrialization (level 35) +A Z: industrialization / B: industrialisation +A Z: industrializations / B: industrialisations +A Z: industrialization's / B: industrialisation's + +# industrialize (level 35) +A Z: industrialize / B: industrialise +A Z: industrialized / B: industrialised +A Z: industrializing / B: industrialising +A Z: industrializes / B: industrialises + +# inesthetic (level 95) +A: inesthetic / B: inaesthetic + +# infamize (level 80) +A Z: infamize / B: infamise +A Z: infamized / B: infamised +A Z: infamizing / B: infamising +A Z: infamizes / B: infamises + +# infamonize (level 80) +A Z: infamonize / B: infamonise +A Z: infamonized / B: infamonised +A Z: infamonizing / B: infamonising +A Z: infamonizes / B: infamonises + +# infere (level 95) +A: infere / B: infree + +# inferiorize (level 95) +A Z: inferiorize / B: inferiorise +A Z: inferiorizes / B: inferiorises + +# infernalize (level 95) +A Z: infernalize / B: infernalise +A Z: infernalizes / B: infernalises + +# infidelize (level 95) +A Z: infidelize / B: infidelise +A Z: infidelizes / B: infidelises + +# infinitize (level 95) +A Z: infinitize / B: infinitise +A Z: infinitizes / B: infinitises + +# inflection (level 35) +A B. C Z: inflection / B Zv: inflexion +A B. C Z: inflection's / B Zv: inflexion's +A B. C Z: inflections / B Zv: inflexions + +# informalize (level 95) +A Z: informalize / B: informalise +A Z: informalizes / B: informalises + +# Ingveonic (level 95) +A: Ingveonic / B: Ingvaeonic +A: Ingveonic's / B: Ingvaeonic's + +# Ingweonic (level 95) +A: Ingweonic / B: Ingwaeonic +A: Ingweonic's / B: Ingwaeonic's + +# inhumanize (level 95) +A Z: inhumanize / B: inhumanise +A Z: inhumanizes / B: inhumanises + +# initial (level 35) +A Cv: initialed / B C: initialled +A Cv: initialing / B C: initialling + +# initialer (level 80) +A: initialer / B: initialler +A: initialers / B: initiallers +A: initialer's / B: initialler's + +# initializable (level 99) +A Z: initializable / B: initialisable + +# initialization (level 20) +A Z: initialization / B: initialisation +A Z: initializations / B: initialisations +A Z: initialization's / B: initialisation's + +# initialize (level 20) +A Z: initialize / B: initialise +A Z: initialized / B: initialised +A Z: initializing / B: initialising +A Z: initializes / B: initialises + +# initializer (level 80) +A Z: initializer / B: initialiser +A Z: initializers / B: initialisers + +# inorganization (level 80) +A Z: inorganization / B: inorganisation +A Z: inorganizations / B: inorganisations + +# inorganized (level 80) +A Z: inorganized / B: inorganised + +# inquire (level 20) +A B. C D: inquire / B Cv D.: enquire +A B. C D: inquired / B Cv D.: enquired +A B. C D: inquiring / B Cv D.: enquiring +A B. C D: inquires / B Cv D.: enquires +## Enquire is more common in British English, but inquire may still be +## used when meaning "make a formal investigation" -- Ox + +# inquiry (level 20) +A B. C D: inquiry / B Cv D.: enquiry +A B. C D: inquiries / B Cv D.: enquiries +A B. C D: inquiry's / B Cv D.: enquiry's +## See note for inquire + +# insignia (level 35) +_ _v: insignia / _V: insigne +_: insignia / _v: insignias / _V: insignes | +_ _v: insignia's / _V: insigne's + +# insolubilization (level 80) +A Z: insolubilization / B: insolubilisation +A Z: insolubilization's / B: insolubilisation's + +# insolubilize (level 70) +A Z: insolubilize / B: insolubilise +A Z: insolubilized / B: insolubilised +A Z: insolubilizing / B: insolubilising +A Z: insolubilizes / B: insolubilises + +# install (level 10) +A B: install / Bv: instal +A B: installs / Bv: instals + +# installment (level 35) +A Cv: installment / B C: instalment +A Cv: installments / B C: instalments +A Cv: installment's / B C: instalment's + +# instill (level 35) +A Bv C: instill / B Cv: instil +A Bv C: instills / B Cv: instils + +# instituter (level 60) +_: instituter / _v: institutor +_: instituters / _v: institutors +_: instituter's / _v: institutor's + +# institutionalization (level 55) +A Z: institutionalization / B: institutionalisation +A Z: institutionalizations / B: institutionalisations +A Z: institutionalization's / B: institutionalisation's + +# institutionalize (level 35) +A Z: institutionalize / B: institutionalise +A Z: institutionalized / B: institutionalised +A Z: institutionalizing / B: institutionalising +A Z: institutionalizes / B: institutionalises + +# institutionize (level 95) +A Z: institutionize / B: institutionise +A Z: institutionizes / B: institutionises + +# instrumentalize (level 95) +A Z: instrumentalize / B: instrumentalise +A Z: instrumentalizes / B: instrumentalises + +# insularize (level 95) +A Z: insularize / B: insularise +A Z: insularizes / B: insularises + +# insurrectionize (level 95) +A Z: insurrectionize / B: insurrectionise +A Z: insurrectionized / B: insurrectionised +A Z: insurrectionizing / B: insurrectionising +A Z: insurrectionizes / B: insurrectionises + +# integralization (level 95) +A Z: integralization / B: integralisation +A Z: integralizations / B: integralisations +A Z: integralization's / B: integralisation's + +# integralize (level 95) +A Z: integralize / B: integralise +A Z: integralizes / B: integralises + +# intellectualization (level 70) +A Z: intellectualization / B: intellectualisation +A Z: intellectualizations / B: intellectualisations +A Z: intellectualization's / B: intellectualisation's + +# intellectualize (level 50) +A Z: intellectualize / B: intellectualise +A Z: intellectualized / B: intellectualised +A Z: intellectualizing / B: intellectualising +A Z: intellectualizes / B: intellectualises + +# intellectualizer (level 80) +A Z: intellectualizer / B: intellectualiser +A Z: intellectualizers / B: intellectualisers +A Z: intellectualizer's / B: intellectualiser's + +# intercivilization (level 95) +A Z: intercivilization / B: intercivilisation +A Z: intercivilizations / B: intercivilisations +A Z: intercivilization's / B: intercivilisation's + +# intercolonization (level 95) +A Z: intercolonization / B: intercolonisation +A Z: intercolonizations / B: intercolonisations +A Z: intercolonization's / B: intercolonisation's + +# intercrystallization (level 95) +A Z: intercrystallization / B: intercrystallisation +A Z: intercrystallizations / B: intercrystallisations +A Z: intercrystallization's / B: intercrystallisation's + +# intercrystallize (level 95) +A Z: intercrystallize / B: intercrystallise +A Z: intercrystallizes / B: intercrystallises + +# interhemal (level 95) +A Dv: interhemal / B D: interhaemal + +# interhybridize (level 95) +A Z: interhybridize / B: interhybridise +A Z: interhybridizes / B: interhybridises + +# interiorization (level 80) +A Z: interiorization / B: interiorisation + +# interiorize (level 70) +A Z: interiorize / B: interiorise +A Z: interiorized / B: interiorised +A Z: interiorizing / B: interiorising +A Z: interiorizes / B: interiorises + +# interjectionalize (level 95) +A Z: interjectionalize / B: interjectionalise +A Z: interjectionalized / B: interjectionalised +A Z: interjectionalizing / B: interjectionalising +A Z: interjectionalizes / B: interjectionalises + +# interjectionize (level 95) +A Z: interjectionize / B: interjectionise +A Z: interjectionizes / B: interjectionises + +# interjudgment (level 95) +A: interjudgment / B: interjudgement +A: interjudgments / B: interjudgements +A: interjudgment's / B: interjudgement's + +# intern (level 35) +_: intern / _v: interne | +_: intern / _V: interne | +_: interns / _V: internes | +_: intern's / _V: interne's | + +# internalization (level 55) +A Z: internalization / B: internalisation +A Z: internalizations / B: internalisations +A Z: internalization's / B: internalisation's + +# internalize (level 50) +A Z: internalize / B: internalise +A Z: internalized / B: internalised +A Z: internalizing / B: internalising +A Z: internalizes / B: internalises + +# internationalization (level 55) +A Z: internationalization / B: internationalisation +A Z: internationalizations / B: internationalisations +A Z: internationalization's / B: internationalisation's + +# internationalize (level 50) +A Z: internationalize / B: internationalise +A Z: internationalized / B: internationalised +A Z: internationalizing / B: internationalising +A Z: internationalizes / B: internationalises + +# internment (level 40) +_: internment / _v: internement +_: internments / _v: internements + +# internship (level 40) +_: internship / _v: interneship +_: internships / _v: interneships + +# interorganizational (level 80) +A Z: interorganizational / B: interorganisational + +# intime (level 80) +A: intime / B: intimae + +# intraorganization (level 95) +A Z: intraorganization / B: intraorganisation +A Z: intraorganizations / B: intraorganisations +A Z: intraorganization's / B: intraorganisation's + +# inure (level 50) +_: inure / _v: enure +_: inured / _v: enured +_: inuring / _v: enuring +_: inures / _v: enures + +# invigor (level 95) +A DV: invigor / B D: invigour + +# inward (level 35) +_: inward | +_: inward / _v: inwards | + +# iodization (level 80) +A Z: iodization / B: iodisation +A Z: iodization's / B: iodisation's + +# iodize (level 50) +A Z: iodize / B: iodise +A Z: iodized / B: iodised +A Z: iodizing / B: iodising +A Z: iodizes / B: iodises + +# iodizer (level 80) +A Z: iodizer / B: iodiser +A Z: iodizers / B: iodisers +A Z: iodizer's / B: iodiser's + +# Ionicization (level 95) +A Z: Ionicization / B: Ionicisation +A Z: Ionicizations / B: Ionicisations +A Z: Ionicization's / B: Ionicisation's + +# Ionicize (level 80) +A Z: Ionicize / B: Ionicise +A Z: Ionicized / B: Ionicised +A Z: Ionicized's / B: Ionicised's +A Z: Ionicizing / B: Ionicising +A Z: Ionicizes / B: Ionicises +A Z: Ionicize's / B: Ionicise's +A Z: Ionicizing's / B: Ionicising's + +# ionizable (level 70) +A Z: ionizable / B: ionisable +A Z: ionizabler / B: ionisabler +A Z: ionizables / B: ionisables +A Z: ionizablest / B: ionisablest +A Z: ionizable's / B: ionisable's + +# ionization (level 50) +A Z: ionization / B: ionisation +A Z: ionizations / B: ionisations +A Z: ionization's / B: ionisation's + +# ionize (level 50) +A Z: ionize / B: ionise +A Z: ionized / B: ionised +A Z: ionizing / B: ionising +A Z: ionizes / B: ionises +A Z: ionizings / B: ionisings + +# ionizer (level 50) +A B Z: ionizer / Bv: ioniser +A B Z: ionizers / Bv: ionisers +A B Z: ionizer's / Bv: ioniser's + +# ionizion (level 99) +A Z: ionizion / B: ionision +A Z: ionizions / B: ionisions + +# Iphinoe (level 95) +A: Iphinoe / B: Iphinoae +A: Iphinoe's / B: Iphinoae's + +# ipomea (level 70) +A Dv: ipomea / B D: ipomoea + +# Iranize (level 95) +A Z: Iranize / B: Iranise +A Z: Iranizes / B: Iranises +A Z: Iranize's / B: Iranise's + +# Iricize (level 95) +A Z: Iricize / B: Iricise +A Z: Iricize's / B: Iricise's + +# Iricized (level 95) +A Z: Iricized / B: Iricised +A Z: Iricized's / B: Iricised's + +# Iricizing (level 95) +A Z: Iricizing / B: Iricising +A Z: Iricizing's / B: Iricising's + +# iridectomize (level 95) +A Z: iridectomize / B: iridectomise + +# iridectomized (level 95) +A Z: iridectomized / B: iridectomised + +# iridectomizing (level 95) +A Z: iridectomizing / B: iridectomising + +# iridization (level 80) +A Z: iridization / B: iridisation +A Z: iridizations / B: iridisations + +# iridize (level 70) +A Z: iridize / B: iridise +A Z: iridized / B: iridised +A Z: iridizing / B: iridising +A Z: iridizes / B: iridises + +# Irishize (level 95) +A Z: Irishize / B: Irishise +A Z: Irishized / B: Irishised +A Z: Irishized's / B: Irishised's +A Z: Irishizing / B: Irishising +A Z: Irishizes / B: Irishises +A Z: Irishize's / B: Irishise's +A Z: Irishizing's / B: Irishising's + +# ironize (level 80) +A Z: ironize / B: ironise +A Z: ironized / B: ironised +A Z: ironizing / B: ironising +A Z: ironizes / B: ironises + +# irrationalize (level 70) +A Z: irrationalize / B: irrationalise +A Z: irrationalized / B: irrationalised +A Z: irrationalizing / B: irrationalising +A Z: irrationalizes / B: irrationalises + +# irrealizable (level 80) +A Z: irrealizable / B: irrealisable + +# irrecognizable (level 80) +A Z: irrecognizable / B: irrecognisable + +# irregularize (level 95) +A Z: irregularize / B: irregularise +A Z: irregularizes / B: irregularises + +# ischemia (level 70) +A C Dv: ischemia / B D: ischaemia +A C Dv: ischemias / B D: ischaemias +A C Dv: ischemia's / B D: ischaemia's + +# ischemic (level 70) +A C Dv: ischemic / B D: ischaemic + +# Islamicize (level 80) +A Z: Islamicize / B: Islamicise +A Z: Islamicized / B: Islamicised +A Z: Islamicized's / B: Islamicised's +A Z: Islamicizing / B: Islamicising +A Z: Islamicizes / B: Islamicises +A Z: Islamicize's / B: Islamicise's +A Z: Islamicizing's / B: Islamicising's + +# Islamization (level 80) +A Z: Islamization / B: Islamisation +A Z: Islamizations / B: Islamisations +A Z: Islamization's / B: Islamisation's + +# Islamize (level 70) +A Z: Islamize / B: Islamise +A Z: Islamized / B: Islamised +A Z: Islamizing / B: Islamising +A Z: Islamizes / B: Islamises + +# isochronization (level 99) +A Z: isochronization / B: isochronisation + +# isochronize (level 70) +A Z: isochronize / B: isochronise +A Z: isochronized / B: isochronised +A Z: isochronizing / B: isochronising +A Z: isochronizes / B: isochronises + +# isoimmunization (level 80) +A Z: isoimmunization / B: isoimmunisation +A Z: isoimmunizations / B: isoimmunisations +A Z: isoimmunization's / B: isoimmunisation's + +# isoimmunize (level 95) +A Z: isoimmunize / B: isoimmunise +A Z: isoimmunizes / B: isoimmunises + +# isomerization (level 80) +A Z: isomerization / B: isomerisation +A Z: isomerizations / B: isomerisations +A Z: isomerization's / B: isomerisation's + +# isomerize (level 70) +A Z: isomerize / B: isomerise +A Z: isomerized / B: isomerised +A Z: isomerizing / B: isomerising +A Z: isomerizes / B: isomerises + +# Israelitize (level 95) +A Z: Israelitize / B: Israelitise +A Z: Israelitizes / B: Israelitises +A Z: Israelitize's / B: Israelitise's + +# Italianization (level 80) +A Z: Italianization / B: Italianisation +A Z: Italianizations / B: Italianisations +A Z: Italianization's / B: Italianisation's + +# Italianize (level 70) +A Z: Italianize / B: Italianise +A Z: Italianized / B: Italianised +A Z: Italianizing / B: Italianising +A Z: Italianizes / B: Italianises +A Z: italianize / B: italianise +A Z: italianized / B: italianised +A Z: italianizing / B: italianising +A Z: italianizes / B: italianises + +# Italianizer (level 95) +A Z: Italianizer / B: Italianiser +A Z: Italianizers / B: Italianisers +A Z: Italianizer's / B: Italianiser's + +# italicization (level 60) +A Z: italicization / B: italicisation +A Z: italicizations / B: italicisations +A Z: italicization's / B: italicisation's + +# italicize (level 35) +A Z: italicize / B: italicise +A Z: italicized / B: italicised +A Z: italicizing / B: italicising +A Z: italicizes / B: italicises + +# itemization (level 50) +A Z: itemization / B: itemisation +A Z: itemizations / B: itemisations +A Z: itemization's / B: itemisation's + +# itemize (level 35) +A Z: itemize / B: itemise +A Z: itemized / B: itemised +A Z: itemizing / B: itemising +A Z: itemizes / B: itemises + +# itemizer (level 70) +A Z: itemizer / B: itemiser +A Z: itemizers / B: itemisers +A Z: itemizer's / B: itemiser's + +# Iturean (level 80) +A: Iturean / B: Ituraean +A: Itureans / B: Ituraeans + +# izing (level 95) +A Z: izing / B: ising + +# jacobean (level 95) +A: jacobean / B: jacobaean + +# Jacobinization (level 95) +A Z: Jacobinization / B: Jacobinisation +A Z: Jacobinization's / B: Jacobinisation's + +# Jacobinize (level 80) +A Z: Jacobinize / B: Jacobinise +A Z: Jacobinized / B: Jacobinised +A Z: Jacobinized's / B: Jacobinised's +A Z: Jacobinizing / B: Jacobinising +A Z: Jacobinizes / B: Jacobinises +A Z: Jacobinize's / B: Jacobinise's +A Z: Jacobinizing's / B: Jacobinising's + +# jail (level 20) +A B Z: jail / Bv ZV: gaol +A B Z: jails / Bv ZV: gaols +A B Z: jail's / Bv ZV: gaol's +A B Z: jailed / Bv ZV: gaoled +A B Z: jailing / Bv ZV: gaoling + +# jailbird (level 55) +A B: jailbird / B-: gaolbird +A B: jailbird's / B-: gaolbird's +A B: jailbirds / B-: gaolbirds + +# jailbreak (level 50) +A B: jailbreak / B-: gaolbreak +A B: jailbreak's / B-: gaolbreak's +A B: jailbreaks / B-: gaolbreaks + +# jailer (level 35) +A B C Z: jailer / AV Cv: jailor / Bv ZV: gaoler +A B C Z: jailers / AV Cv: jailors / Bv ZV: gaolers +A B C Z: jailer's / AV Cv: jailor's / Bv ZV: gaoler's + +# janizary (level 80) +A Z: janizary / B: janisary +A Z: janizaries / B: janisaries + +# Japanization (level 80) +A Z: Japanization / B: Japanisation +A Z: Japanizations / B: Japanisations +A Z: Japanization's / B: Japanisation's + +# Japanize (level 80) +A Z: Japanize / B: Japanise +A Z: Japanized / B: Japanised +A Z: Japanizing / B: Japanising +A Z: Japanizes / B: Japanises + +# jargonization (level 80) +A Z: jargonization / B: jargonisation +A Z: jargonizations / B: jargonisations +A Z: jargonization's / B: jargonisation's + +# jargonize (level 70) +A Z: jargonize / B: jargonise +A Z: jargonized / B: jargonised +A Z: jargonizing / B: jargonising +A Z: jargonizes / B: jargonises + +# jasmine (level 50) +_: jasmine / _V: jessamine +_: jasmines / _V: jessamines +_: jasmine's / _V: jessamine's + +# jasperize (level 80) +A Z: jasperize / B: jasperise +A Z: jasperized / B: jasperised +A Z: jasperizing / B: jasperising +A Z: jasperizes / B: jasperises + +# jeez (level 40) +_: jeez / _V: geez + +# jeopardization (level 99) +A Z: jeopardization / B: jeopardisation + +# jeopardize (level 35) +A Z: jeopardize / B: jeopardise +A Z: jeopardized / B: jeopardised +A Z: jeopardizing / B: jeopardising +A Z: jeopardizes / B: jeopardises + +# jerrycan (level 55) +A B: jerrycan / Av Bv: jerrican / Av: jerry_can +A B: jerrycans / Av Bv: jerricans / Av: jerry_cans +A B: jerrycan's / Av Bv: jerrican's / Av: jerry_can's + +# Jes (level 80) +A: Jes / B: Joes + +# Jesuitization (level 95) +A Z: Jesuitization / B: Jesuitisation +A Z: Jesuitization's / B: Jesuitisation's + +# Jesuitize (level 80) +A Z: Jesuitize / B: Jesuitise +A Z: Jesuitized / B: Jesuitised +A Z: Jesuitizing / B: Jesuitising +A Z: Jesuitizes / B: Jesuitises + +# jewel (level 35) +A: jeweled / B: jewelled +A: jeweling / B: jewelling + +# jeweler (level 35) +A: jeweler / B: jeweller +A: jewelers / B: jewellers +A: jeweler's / B: jeweller's + +# jewelry (level 35) +A Cv: jewelry / B C: jewellery +A Cv: jewelry's / B C: jewellery's + +# jibe (level 35) +A B: jibe | agree +A B: jibed | agree +A B: jibing | agree +A B: jibes | agree +A Bv: gibe / Av B: jibe | insult +A Bv: gibed / Av B: jibed | insult +A Bv: gibing / Av B: jibing | insult +A Bv: gibes / Av B: jibes | insult +A Bv: gibe's / Av B: jibe's | insult +A Cv: jibe / AV B C: gybe | sailing +A Cv: jibed / AV B C: gybed | sailing +A Cv: jibing / AV B C: gybing | sailing +A Cv: jibes / AV B C: gybes | sailing +A Cv: jibe's / AV B C: gybe's | sailing + +# jihad (level 50) +_: jihad / _V: jehad +_: jihads / _V: jehads +_: jihad's / _V: jehad's + +# jinni (level 50) +_: jinni / _v: jinn / _V: djinni / _V: djinn +_: jinn / _v: jinns / _V: djinns / _V: djinn | +_: jinni's / _v: jinn's / _V: djinni's / _V: djinn's + +# jinrikisha (level 50) +_: jinrikisha / _v: jinricksha / _-: jinriksha +_: jinrikishas / _v: jinrickshas / _-: jinrikshas +_: jinrikisha's / _v: jinricksha's / _-: jinriksha's + +# jokey (level 55) +A B C: jokey / AV Bv: joky + +# Jonathanization (level 95) +A Z: Jonathanization / B: Jonathanisation +A Z: Jonathanizations / B: Jonathanisations +A Z: Jonathanization's / B: Jonathanisation's + +# jor (level 70) +A: jor / B: jour +A: jors / B: jours + +# journalization (level 80) +A Z: journalization / B: journalisation +A Z: journalizations / B: journalisations +A Z: journalization's / B: journalisation's + +# journalize (level 70) +A Z: journalize / B: journalise +A Z: journalized / B: journalised +A Z: journalizing / B: journalising +A Z: journalizes / B: journalises + +# journalizer (level 80) +A Z: journalizer / B: journaliser +A Z: journalizers / B: journalisers +A Z: journalizer's / B: journaliser's + +# jovialize (level 95) +A Z: jovialize / B: jovialise +A Z: jovializes / B: jovialises + +# Judaization (level 80) +A Z: Judaization / B: Judaisation +A Z: Judaization's / B: Judaisation's + +# Judaize (level 70) +A Z: Judaize / B: Judaise +A Z: Judaized / B: Judaised +A Z: Judaizing / B: Judaising + +# Judaizer (level 80) +A Z: Judaizer / B: Judaiser +A Z: Judaizer's / B: Judaiser's +A Z: judaizer / B: judaiser + +# Judean (level 70) +A: Judean / B: Judaean +A: Judeans / B: Judaeans + +# Judeophobia (level 95) +A: Judeophobia / B: Judaeophobia +A: Judeophobia's / B: Judaeophobia's + +# judgment (level 10) +A Bv C: judgment / B Cv: judgement +A Bv C: judgments / B Cv: judgements +A Bv C: judgment's / B Cv: judgement's + +# judgmental (level 40) +A Bv C: judgmental / Av B Cv: judgemental +A Bv C: judgmentaler / Av B Cv: judgementaler +A Bv C: judgmentalest / Av B Cv: judgementalest + +# judicialize (level 95) +A Z: judicialize / B: judicialise +A Z: judicializes / B: judicialises + +# jujitsu (level 50) +_: jujitsu / _V: jujutsu / _V: jiujitsu +_: jujitsus / _V: jujutsus / _V: jiujitsus +_: jujitsu's / _V: jiujitsu's / _V: jujutsu's + +# Julide (level 95) +A: Julide / B: Julidae +A: Julide's / B: Julidae's + +# jumboize (level 80) +A Z: jumboize / B: jumboise +A Z: jumboized / B: jumboised +A Z: jumboizing / B: jumboising +A Z: jumboizes / B: jumboises + +# junketeer (level 60) +_: junketeer / _v: junketer +_: junketeers / _v: junketers +_: junketeer's / _v: junketer's + +# juvenilize (level 70) +A Z: juvenilize / B: juvenilise +A Z: juvenilizes / B: juvenilises + +# kabbalah (level 60) +_: kabbalah / _v: cabala / _v: kabbala / _V: kabala / _V: cabbala / _V: cabbalah + +# kane (level 80) +A: kane / B: kanae + +# kaolinization (level 95) +A Z: kaolinization / B: kaolinisation +A Z: kaolinizations / B: kaolinisations +A Z: kaolinization's / B: kaolinisation's + +# kaolinize (level 80) +A Z: kaolinize / B: kaolinise +A Z: kaolinized / B: kaolinised +A Z: kaolinizing / B: kaolinising +A Z: kaolinizes / B: kaolinises + +# kebab (level 50) +_: kebab / _v: kabob / _v: kebob +_: kebabs / _v: kabobs / _v: kebobs +_: kebab's / _v: kebob's / _v: kabob's + +# ked (level 70) +A: ked / B: kaed + +# Keizer (level 80) +A Z: Keizer / B: Keiser +A Z: Keizer's / B: Keiser's + +# kellia (level 95) +A: kellia / B: koellia + +# kembed (level 80) +A: kembed / B: kemboed + +# kennel (level 35) +A: kenneled / B: kennelled +A: kenneling / B: kennelling + +# Keppel (level 95) +A: Keppel / B: Koeppel +A: Keppel's / B: Koeppel's + +# keratinization (level 80) +A Z: keratinization / B: keratinisation +A Z: keratinizations / B: keratinisations +A Z: keratinization's / B: keratinisation's + +# keratinize (level 70) +A Z: keratinize / B: keratinise +A Z: keratinized / B: keratinised +A Z: keratinizing / B: keratinising +A Z: keratinizes / B: keratinises + +# Kerin (level 95) +A: Kerin / B: Krein +A: Kerin's / B: Krein's + +# kernel (level 80) +A: kerneled / B: kernelled +A: kerneling / B: kernelling + +# kerosene (level 35) +A B C: kerosene / AV Bv: kerosine +A B C: kerosenes / AV Bv: kerosines +A B C: kerosene's / AV Bv: kerosine's + +# ketchup (level 35) +_: ketchup / _v: catsup / _V: catchup +_: ketchups / _v: catsups / _V: catchups +_: ketchup's / _v: catsup's / _V: catchup's + +# ketonemia (level 95) +A Dv: ketonemia / B D: ketonaemia + +# ketonization (level 95) +A Z: ketonization / B: ketonisation +A Z: ketonizations / B: ketonisations +A Z: ketonization's / B: ketonisation's + +# ketonize (level 95) +A Z: ketonize / B: ketonise +A Z: ketonizes / B: ketonises + +# kiddie (level 40) +_: kiddie / _V: kiddy +_: kiddie's / _V: kiddy's + +# kidnap (level 20) +A B: kidnapped / AV: kidnaped +A B: kidnapping / AV: kidnaping + +# kidnappee (level 80) +_: kidnappee / _v: kidnapee +_: kidnappees / _v: kidnapees +_: kidnappee's / _v: kidnapee's + +# kidnapper (level 35) +A B: kidnapper / AV: kidnaper +A B: kidnappers / AV: kidnapers +A B: kidnapper's / AV: kidnaper's + +# kilogram (level 35) +A B C: kilogram / Bv: kilogramme +A B C: kilograms / Bv: kilogrammes +A B C: kilogram's / Bv: kilogramme's + +# kiloliter (level 60) +A Cv: kiloliter / B C: kilolitre +A Cv: kiloliters / B C: kilolitres +A Cv: kiloliter's / B C: kilolitre's + +# kilometer (level 35) +A Cv: kilometer / B C: kilometre +A Cv: kilometers / B C: kilometres +A Cv: kilometer's / B C: kilometre's + +# kindergartner (level 40) +A C: kindergartner / AV B: kindergartener +A C: kindergartners / AV B: kindergarteners +A C: kindergartner's / AV B: kindergartener's + +# kinesthesia (level 70) +A C Dv: kinesthesia / B Cv D: kinaesthesia +A C Dv: kinesthesias / B Cv D: kinaesthesias +A C Dv: kinesthesia's / B Cv D: kinaesthesia's + +# kinesthesis (level 80) +A Dv: kinesthesis / B D: kinaesthesis +A Dv: kinestheses / B D: kinaestheses +A Dv: kinesthesis's / B D: kinaesthesis's + +# kinesthetic (level 70) +A C Dv: kinesthetic / B Cv D: kinaesthetic +A C Dv: kinestheticer / B Cv D: kinaestheticer +A C Dv: kinestheticest / B Cv D: kinaestheticest +A C Dv: kinesthetics / B Cv D: kinaesthetics + +# kinesthetically (level 80) +A Dv: kinesthetically / B D: kinaesthetically +A Dv: kinestheticallier / B D: kinaestheticallier +A Dv: kinestheticalliest / B D: kinaestheticalliest + +# kissogram (level 55) +_: kissogram / _-: kissagram +_: kissograms / _-: kissagrams +_: kissogram's / _-: kissagram's + +# knickknack (level 40) +_: knickknack / _V: nicknack +_: knickknacks / _V: nicknacks +_: knickknack's / _V: nicknack's + +# knockwurst (level 50) +_: knockwurst / _.: knackwurst +_: knockwursts / _.: knackwursts +_: knockwurst's / _.: knackwurst's + +# kooky (level 50) +_: kooky / _V: kookie + +# kopeck (level 50) +_: kopeck / _v: kopek / _V: copeck +_: kopecks / _v: kopeks / _V: copecks +_: kopeck's / _v: kopek's / _V: copeck's + +# Kossean (level 95) +A: Kossean / B: Kossaean +A: Kossean's / B: Kossaean's + +# kumquat (level 50) +_: kumquat / _V: cumquat +_: kumquats / _V: cumquats +_: kumquat's / _V: cumquat's + +# kyanize (level 70) +A Z: kyanize / B: kyanise +A Z: kyanized / B: kyanised +A Z: kyanizing / B: kyanising +A Z: kyanizes / B: kyanises + +# kyles (level 70) +A B: kyles / Bv: kyloes + +# label (level 10) +A: labeled / B: labelled +A: labeling / B: labelling + +# labelable (level 80) +A: labelable / B: labellable + +# labeler (level 70) +A: labeler / B: labeller +A: labelers / B: labellers +A: labeler's / B: labeller's + +# labialization (level 80) +A Z: labialization / B: labialisation +A Z: labializations / B: labialisations +A Z: labialization's / B: labialisation's + +# labialize (level 70) +A Z: labialize / B: labialise +A Z: labialized / B: labialised +A Z: labializing / B: labialising +A Z: labializes / B: labialises + +# labiate (level 70) +A: labiate / B: labiatae + +# labilization (level 95) +A Z: labilization / B: labilisation +A Z: labilizations / B: labilisations +A Z: labilization's / B: labilisation's + +# labilize (level 95) +A Z: labilize / B: labilise +A Z: labilizes / B: labilises + +# labiovelarization (level 95) +A Z: labiovelarization / B: labiovelarisation +A Z: labiovelarization's / B: labiovelarisation's + +# labiovelarize (level 95) +A Z: labiovelarize / B: labiovelarise + +# labiovelarized (level 95) +A Z: labiovelarized / B: labiovelarised + +# labiovelarizing (level 95) +A Z: labiovelarizing / B: labiovelarising + +# labor (level 10) +A Cv DV: labor / B C D: labour +A Cv DV: labored / B C D: laboured +A Cv DV: laboring / B C D: labouring +A Cv DV: labor's / B C D: labour's +A Cv DV: laborings / B C D: labourings +A Cv DV: laboring's / B C D: labouring's +A Cv DV: labors / B C D: labours +A Cv DV: labored's / B C D: laboured's | (-) + +# laborability (level 95) +A Cv DV: laborability / B C D: labourability +A Cv DV: laborabilities / B C D: labourabilities +A Cv DV: laborability's / B C D: labourability's + +# laborable (level 95) +A Cv DV: laborable / B C D: labourable +A Cv DV: laborables / B C D: labourables +A Cv DV: laborable's / B C D: labourable's + +# laborage (level 95) +A Cv DV: laborage / B C D: labourage + +# laboredly (level 95) +A Cv DV: laboredly / B C D: labouredly +A Cv DV: laboredlier / B C D: labouredlier +A Cv DV: laboredliest / B C D: labouredliest + +# laboredness (level 95) +A Cv DV: laboredness / B C D: labouredness +A Cv DV: laborednesses / B C D: labourednesses +A Cv DV: laboredness's / B C D: labouredness's + +# laborer (level 35) +A Cv DV: laborer / B C D: labourer +A Cv DV: laborers / B C D: labourers +A Cv DV: laborer's / B C D: labourer's + +# laboress (level 95) +A Cv DV: laboress / B C D: labouress + +# laborhood (level 95) +A Cv DV: laborhood / B C D: labourhood +A Cv DV: laborhoods / B C D: labourhoods +A Cv DV: laborhood's / B C D: labourhood's + +# laboringly (level 95) +A Cv DV: laboringly / B C D: labouringly +A Cv DV: laboringlier / B C D: labouringlier +A Cv DV: laboringliest / B C D: labouringliest + +# Laborism (level 80) +A Cv DV: Laborism / B C D: Labourism +A Cv DV: Laborism's / B C D: Labourism's +A Cv DV: laborism / B C D: labourism +A Cv DV: laborisms / B C D: labourisms +A Cv DV: laborism's / B C D: labourism's + +# laborist (level 80) +A: laborist / B: labourist +A: laborists / B: labourists +A: laborist's / B: labourist's + +# Laborite (level 70) +A: Laborite / B: Labourite +A: Laborites / B: Labourites +A: Laborite's / B: Labourite's +A: laborite / B: labourite +A: laborites / B: labourites +A: laborite's / B: labourite's + +# laborless (level 95) +A Cv DV: laborless / B C D: labourless +A Cv DV: laborlesser / B C D: labourlesser +A Cv DV: laborlessest / B C D: labourlessest + +# laborlesses (level 99) +A Cv DV: laborlesses / B C D: labourlesses + +# laborsaving (level 60) +A Cv DV: laborsaving / B C D: laboursaving + +# laborsome (level 80) +A Cv DV: laborsome / B C D: laboursome + +# laborsomely (level 95) +A Cv DV: laborsomely / B C D: laboursomely + +# lachrymal (level 50) +_: lachrymal / _v: lacrimal + +# lackluster (level 35) +A: lackluster / B: lacklustre +A: lacklusterrer / B: lacklustrer +A: lacklusterrest / B: lacklustrest +A: lacklusters / B: lacklustres +A: lackluster's / B: lacklustre's + +# laconize (level 95) +A Z: laconize / B: laconise +A Z: laconized / B: laconised +A Z: laconizing / B: laconising +A Z: laconizes / B: laconises + +# lactonized (level 95) +A Z: lactonized / B: lactonised + +# lagniappe (level 50) +_: lagniappe / _-: lagnappe +_: lagniappes / _-: lagnappes +_: lagniappe's / _-: lagnappe's + +# laicization (level 80) +A Z: laicization / B: laicisation +A Z: laicizations / B: laicisations +A Z: laicization's / B: laicisation's + +# laicize (level 70) +A Z: laicize / B: laicise +A Z: laicized / B: laicised +A Z: laicizing / B: laicising +A Z: laicizes / B: laicises + +# lairize (level 80) +A Z: lairize / B: lairise +A Z: lairized / B: lairised +A Z: lairizing / B: lairising +A Z: lairizes / B: lairises + +# lambaste (level 50) +_: lambaste / _v: lambast +_: lambastes / _v: lambasts + +# laminarize (level 80) +A Z: laminarize / B: laminarise +A Z: laminarized / B: laminarised +A Z: laminarizing / B: laminarising +A Z: laminarizes / B: laminarises + +# Lander (level 80) +A: Lander / B: Landre +A: Lander's / B: Landre's + +# Laothoe (level 95) +A: Laothoe / B: Laothoae +A: Laothoe's / B: Laothoae's + +# lapeled (level 70) +A: lapeled / B: lapelled + +# lasagna (level 50) +A Bv: lasagna / B: lasagne +A Bv: lasagnas / B: lasagnes +A Bv: lasagna's / B: lasagne's + +# laster (level 80) +A: laster / B: lastre + +# latentize (level 95) +A Z: latentize / B: latentise +A Z: latentizes / B: latentises + +# lateralization (level 70) +A Z: lateralization / B: lateralisation +A Z: lateralizations / B: lateralisations +A Z: lateralization's / B: lateralisation's + +# lateralize (level 80) +A Z: lateralize / B: lateralise +A Z: lateralizes / B: lateralises + +# laterization (level 80) +A Z: laterization / B: laterisation +A Z: laterizations / B: laterisations +A Z: laterization's / B: laterisation's + +# Latinization (level 80) +A Z: Latinization / B: Latinisation +A Z: Latinizations / B: Latinisations +A Z: Latinization's / B: Latinisation's + +# Latinize (level 70) +A Z: Latinize / B: Latinise +A Z: Latinized / B: Latinised +A Z: Latinizing / B: Latinising +A Z: Latinizes / B: Latinises +A Z: latinize / B: latinise + +# Latinizer (level 80) +A Z: Latinizer / B: Latiniser +A Z: Latinizers / B: Latinisers + +# launderette (level 55) +A B: launderette / AV Bv: laundrette +A B: launderettes / AV Bv: laundrettes +A B: launderette's / AV Bv: laundrette's + +# laure (level 80) +A: laure / B: laurae + +# laurel (level 80) +A: laureled / B: laurelled +A: laureling / B: laurelling + +# lavalier_microphone (level 99) +_: lavalier_microphone / _V: lavaliere_microphone +_: lavalier_microphones / _V: lavaliere_microphones +_: lavalier_microphone's / _V: lavaliere_microphone's + +# lavolted (level 95) +A: lavolted / B: lavoltaed + +# leaped (level 35) +A B.: leaped / A. B: leapt + +# learned (level 10) +A B. Z: learned / B Zv: learnt + +# leatherize (level 95) +A Z: leatherize / B: leatherise +A Z: leatherizes / B: leatherises + +# lefty (level 50) +_: lefty / _V: leftie +_: lefty's / _V: leftie's + +# legalization (level 50) +A Z: legalization / B: legalisation +A Z: legalizations / B: legalisations +A Z: legalization's / B: legalisation's + +# legalize (level 35) +A Z: legalize / B: legalise +A Z: legalized / B: legalised +A Z: legalizing / B: legalising +A Z: legalizes / B: legalises + +# legging (level 35) +A B: legging / Av: leggin | +A B: leggings / Av: leggins | +A B: legging's / Av: leggin's | + +# legitimatize (level 60) +A Z: legitimatize / B: legitimatise +A Z: legitimatized / B: legitimatised +A Z: legitimatizing / B: legitimatising +A Z: legitimatizes / B: legitimatises + +# legitimization (level 60) +A Z: legitimization / B: legitimisation +A Z: legitimizations / B: legitimisations +A Z: legitimization's / B: legitimisation's + +# legitimize (level 50) +A Z: legitimize / B: legitimise +A Z: legitimized / B: legitimised +A Z: legitimizing / B: legitimising +A Z: legitimizes / B: legitimises + +# legitimizer (level 80) +A Z: legitimizer / B: legitimiser + +# leguminose (level 95) +A: leguminose / B: leguminosae + +# lemmatize (level 80) +A Z: lemmatize / B: lemmatise +A Z: lemmatized / B: lemmatised +A Z: lemmatizing / B: lemmatising +A Z: lemmatizes / B: lemmatises + +# leporide (level 70) +A: leporide / B: leporidae + +# leptospire (level 80) +A: leptospire / B: leptospirae + +# Lernean (level 80) +A: Lernean / B: Lernaean +A: Lernean's / B: Lernaean's +A: lernean / B: lernaean + +# lesses (level 70) +A: lesses / B: loesses + +# lethalize (level 95) +A Z: lethalize / B: lethalise +A Z: lethalizes / B: lethalises + +# lethargize (level 80) +A Z: lethargize / B: lethargise +A Z: lethargized / B: lethargised +A Z: lethargizing / B: lethargising +A Z: lethargizes / B: lethargises + +# leucemia (level 80) +A: leucemia / B: leucaemia +A: leucemias / B: leucaemias + +# leucemic (level 80) +A: leucemic / B: leucaemic + +# leuchemia (level 80) +A: leuchemia / B: leuchaemia + +# leucocythemia (level 80) +A: leucocythemia / B: leucocythaemia + +# leucocythemic (level 95) +A: leucocythemic / B: leucocythaemic + +# leucorrhea (level 80) +A: leucorrhea / B: leucorrhoea +A: leucorrheas / B: leucorrhoeas +A: leucorrhea's / B: leucorrhoea's + +# leucorrheal (level 95) +A: leucorrheal / B: leucorrhoeal + +# Leucothoe (level 95) +A: Leucothoe / B: Leucothoae +A: Leucothoe's / B: Leucothoae's + +# leukemia (level 35) +A C Dv: leukemia / B D: leukaemia +A C Dv: leukemias / B D: leukaemias +A C Dv: leukemia's / B D: leukaemia's + +# leukemogenesis (level 80) +A Dv: leukemogenesis / B D: leukaemogenesis +A Dv: leukemogeneses / B D: leukaemogeneses + +# leukorrhea (level 70) +A Dv: leukorrhea / B D: leukorrhoea + +# leukorrheal (level 80) +A Dv: leukorrheal / B D: leukorrhoeal + +# level (level 35) +A B: level +A: leveled / B: levelled +A: leveler / B: leveller +A: levelers / B: levellers +A: leveler's / B: leveller's +A: levelest / B: levellest +A: leveling / B: levelling +A: leveling's / B: levelling's + +# levigate (level 70) +A: levigate / B: laevigate +A: levigated / B: laevigated +A: levigating / B: laevigating +A: levigates / B: laevigates + +# levo (level 80) +A: levo / B: laevo + +# levoduction (level 95) +A: levoduction / B: laevoduction + +# levogyrate (level 70) +A: levogyrate / B: laevogyrate + +# levogyre (level 80) +A: levogyre / B: laevogyre + +# levogyrous (level 95) +A: levogyrous / B: laevogyrous + +# levolactic (level 95) +A: levolactic / B: laevolactic + +# levorotation (level 70) +A: levorotation / B: laevorotation +A: levorotations / B: laevorotations +A: levorotation's / B: laevorotation's + +# levorotatory (level 70) +A: levorotatory / B: laevorotatory + +# levotartaric (level 95) +A: levotartaric / B: laevotartaric + +# levoversion (level 95) +A: levoversion / B: laevoversion + +# levulin (level 80) +A: levulin / B: laevulin + +# levulose (level 70) +A: levulose / B: laevulose +A: levuloses / B: laevuloses +A: levulose's / B: laevulose's + +# lexicalization (level 80) +A Z: lexicalization / B: lexicalisation +A Z: lexicalizations / B: lexicalisations + +# lexiconize (level 95) +A Z: lexiconize / B: lexiconise +A Z: lexiconizes / B: lexiconises + +# libel (level 35) +A: libeled / B: libelled +A: libeling / B: libelling + +# libelant (level 70) +A: libelant / B: libellant +A: libelants / B: libellants +A: libelant's / B: libellant's + +# libelee (level 70) +A: libelee / B: libellee +A: libelees / B: libellees +A: libelee's / B: libellee's + +# libeler (level 50) +A: libeler / B: libeller +A: libelers / B: libellers +A: libeler's / B: libeller's + +# libelous (level 35) +A Cv: libelous / B C: libellous +A Cv: libelouser / B C: libellouser +A Cv: libelousest / B C: libellousest + +# libelously (level 70) +A: libelously / B: libellously +A: libelouslier / B: libellouslier +A: libelousliest / B: libellousliest + +# liberalization (level 35) +A Z: liberalization / B: liberalisation +A Z: liberalizations / B: liberalisations +A Z: liberalization's / B: liberalisation's + +# liberalize (level 35) +A Z: liberalize / B: liberalise +A Z: liberalized / B: liberalised +A Z: liberalizing / B: liberalising +A Z: liberalizes / B: liberalises + +# liberalizer (level 80) +A Z: liberalizer / B: liberaliser +A Z: liberalizers / B: liberalisers +A Z: liberalizer's / B: liberaliser's + +# license (level 20) +A: license / B: licence | +A: licenses / B: licences | +A: license's / B: licence's | +A B C D: license / Bv: licence | +A B C D: licensed / Bv: licenced | +A B C D: licensing / Bv: licencing | +A B C D: licenses / Bv: licences | + +# licenseless (level 95) +A: licenseless / B: licenceless + +# licenselesses (level 99) +A: licenselesses / B: licencelesses + +# lichenization (level 95) +A Z: lichenization / B: lichenisation +A Z: lichenizations / B: lichenisations +A Z: lichenization's / B: lichenisation's + +# lichenize (level 95) +A Z: lichenize / B: lichenise +A Z: lichenized / B: lichenised +A Z: lichenizing / B: lichenising +A Z: lichenizes / B: lichenises + +# licorice (level 35) +A C D: licorice / B Dv: liquorice +A C D: licorice's / B Dv: liquorice's + +# lignitize (level 95) +A Z: lignitize / B: lignitise +A Z: lignitizes / B: lignitises + +# lignose (level 80) +A: lignose / B: lignosae + +# ligule (level 70) +A: ligule / B: ligulae + +# likability (level 60) +A Dv: likability / Av B D: likeability +A Dv: likabilities / Av B D: likeabilities +A Dv: likability's / Av B D: likeability's + +# likable (level 35) +A Bv: likable / Av B: likeable + +# likableness (level 50) +A Dv: likableness / Av B D: likeableness +A Dv: likablenesses / Av B D: likeablenesses +A Dv: likableness's / Av B D: likeableness's + +# Lilliputianize (level 95) +A Z: Lilliputianize / B: Lilliputianise +A Z: Lilliputianizes / B: Lilliputianises +A Z: Lilliputianize's / B: Lilliputianise's + +# linchpin (level 35) +_: linchpin / _V: lynchpin +_: linchpins / _V: lynchpins +_: linchpin's / _V: lynchpin's + +# linearizable (level 95) +A Z: linearizable / B: linearisable + +# linearization (level 80) +A Z: linearization / B: linearisation +A Z: linearizations / B: linearisations +A Z: linearization's / B: linearisation's + +# linearize (level 70) +A Z: linearize / B: linearise +A Z: linearized / B: linearised +A Z: linearizing / B: linearising +A Z: linearizes / B: linearises + +# linearizion (level 99) +A Z: linearizion / B: linearision + +# linenize (level 95) +A Z: linenize / B: linenise +A Z: linenizes / B: linenises + +# linenizer (level 95) +A Z: linenizer / B: lineniser +A Z: linenizers / B: linenisers + +# linge (level 95) +A: linge / B: lingoe + +# lingualize (level 95) +A Z: lingualize / B: lingualise +A Z: lingualizes / B: lingualises + +# linguine (level 60) +_: linguine / _v: linguini +_: linguines / _v: linguinis +_: linguine's / _v: linguini's + +# lionizable (level 95) +A Z: lionizable / B: lionisable +A Z: lionizables / B: lionisables +A Z: lionizable's / B: lionisable's + +# lionization (level 55) +A Z: lionization / B: lionisation +A Z: lionizations / B: lionisations +A Z: lionization's / B: lionisation's + +# lionize (level 50) +A Z: lionize / B: lionise +A Z: lionized / B: lionised +A Z: lionizing / B: lionising +A Z: lionizes / B: lionises + +# lionizer (level 70) +A Z: lionizer / B: lioniser +A Z: lionizers / B: lionisers +A Z: lionizer's / B: lioniser's + +# lipemia (level 80) +A Dv: lipemia / B D: lipaemia + +# lipemic (level 80) +A Dv: lipemic / B D: lipaemic + +# lipoidemia (level 95) +A Dv: lipoidemia / B D: lipoidaemia + +# liquefier (level 70) +A B: liquefier / AV: liquifier +A B: liquefiers / AV: liquifiers + +# liquefy (level 35) +A B: liquefy / AV Bv: liquify +A B: liquefied / AV Bv: liquified +A B: liquefying / AV Bv: liquifying +A B: liquefies / AV Bv: liquifies + +# liquidization (level 95) +A Z: liquidization / B: liquidisation + +# liquidize (level 50) +A C Z: liquidize / B Cv: liquidise +A C Z: liquidized / B Cv: liquidised +A C Z: liquidizing / B Cv: liquidising +A C Z: liquidizes / B Cv: liquidises + +# liquidizer (level 55) +A Z: liquidizer / B: liquidiser +A Z: liquidizers / B: liquidisers +A Z: liquidizer's / B: liquidiser's + +# lissome (level 50) +A Bv C: lissome / AV B Cv: lissom + +# lissomely (level 70) +_: lissomely / _V: lissomly + +# lissomeness (level 70) +A C: lissomeness / AV B: lissomness +A C: lissomenesses / AV B: lissomnesses + +# Listerize (level 80) +A Z: Listerize / B: Listerise +A Z: Listerized / B: Listerised +A Z: Listerized's / B: Listerised's +A Z: Listerizing / B: Listerising +A Z: Listerizes / B: Listerises +A Z: Listerize's / B: Listerise's +A Z: Listerizing's / B: Listerising's + +# litchi (level 50) +_: litchi / _v: lychee / _V: lichee +_: litchis / _v: lychees / _V: lichees +_: litchi's / _v: lychee's / _V: lichee's + +# liter (level 20) +A: liter / B: litre +A: liters / B: litres +A: liter's / B: litre's + +# literalization (level 80) +A Z: literalization / B: literalisation +A Z: literalizations / B: literalisations +A Z: literalization's / B: literalisation's + +# literalize (level 70) +A Z: literalize / B: literalise +A Z: literalized / B: literalised +A Z: literalizing / B: literalising +A Z: literalizes / B: literalises + +# literalizer (level 80) +A Z: literalizer / B: literaliser +A Z: literalizers / B: literalisers +A Z: literalizer's / B: literaliser's + +# lithed (level 80) +A: lithed / B: lithoed + +# lithemia (level 80) +A Dv: lithemia / B D: lithaemia + +# lithemic (level 80) +A Dv: lithemic / B D: lithaemic + +# lithographize (level 95) +A Z: lithographize / B: lithographise +A Z: lithographizes / B: lithographises + +# lithopedion (level 95) +A Dv: lithopedion / B D: lithopaedion + +# lithopedium (level 95) +A Dv: lithopedium / B D: lithopaedium + +# lithophyse (level 80) +A: lithophyse / B: lithophysae + +# lithotritize (level 80) +A Z: lithotritize / B: lithotritise +A Z: lithotritized / B: lithotritised +A Z: lithotritizing / B: lithotritising +A Z: lithotritizes / B: lithotritises + +# livable (level 35) +A C D: livable / AV B Cv Dv: liveable + +# livableness (level 70) +_: livableness / _V: liveableness + +# loathe (level 35) +_: loathe | detest +_: loath / _V: loth / _V: loathe | reluctant + +# lobotomize (level 60) +A Z: lobotomize / B: lobotomise +A Z: lobotomized / B: lobotomised +A Z: lobotomizing / B: lobotomising +A Z: lobotomizes / B: lobotomises + +# localizable (level 80) +A Z: localizable / B: localisable +A Z: localizabler / B: localisabler +A Z: localizables / B: localisables +A Z: localizablest / B: localisablest +A Z: localizable's / B: localisable's + +# localization (level 50) +A Z: localization / B: localisation +A Z: localizations / B: localisations +A Z: localization's / B: localisation's + +# localize (level 35) +A Z: localize / B: localise +A Z: localized / B: localised +A Z: localizing / B: localising +A Z: localizes / B: localises + +# localizer (level 80) +A Z: localizer / B: localiser +A Z: localizers / B: localisers +A Z: localizer's / B: localiser's + +# locator (level 60) +_: locator / _V: locater +_: locators / _V: locaters +_: locator's / _V: locater's + +# lodestar (level 50) +_: lodestar / _V: loadstar +_: lodestars / _V: loadstars +_: lodestar's / _V: loadstar's + +# lodestone (level 50) +_: lodestone / _V: loadstone +_: lodestones / _V: loadstones +_: lodestone's / _V: loadstone's + +# lodgment (level 70) +A Bv: lodgment / Av B: lodgement +A Bv: lodgments / Av B: lodgements +A Bv: lodgment's / Av B: lodgement's + +# lodicule (level 70) +A: lodicule / B: lodiculae + +# loed (level 80) +A: loed / B: looed + +# logicalization (level 95) +A Z: logicalization / B: logicalisation +A Z: logicalizations / B: logicalisations +A Z: logicalization's / B: logicalisation's + +# logicalize (level 95) +A Z: logicalize / B: logicalise +A Z: logicalizes / B: logicalises + +# logicize (level 70) +A Z: logicize / B: logicise +A Z: logicized / B: logicised +A Z: logicizing / B: logicising +A Z: logicizes / B: logicises + +# logopedic (level 80) +A Dv: logopedic / B D: logopaedic +A Dv: logopedics / B D: logopaedics +A Dv: logopedics's / B D: logopaedics's + +# logorrhea (level 70) +A C Dv: logorrhea / B D: logorrhoea +A C Dv: logorrheas / B D: logorrhoeas +A C Dv: logorrhea's / B D: logorrhoea's + +# lollipop (level 35) +_: lollipop / _v: lollypop +_: lollipops / _v: lollypops +_: lollipop's / _v: lollypop's + +# lollygag (level 50) +_: lollygag / _v: lallygag +_: lollygagged / _v: lallygagged +_: lollygagging / _v: lallygagging +_: lollygags / _v: lallygags + +# Londonization (level 95) +A Z: Londonization / B: Londonisation +A Z: Londonizations / B: Londonisations +A Z: Londonization's / B: Londonisation's + +# Londonize (level 80) +A Z: Londonize / B: Londonise +A Z: Londonized / B: Londonised +A Z: Londonized's / B: Londonised's +A Z: Londonizing / B: Londonising +A Z: Londonizes / B: Londonises +A Z: Londonize's / B: Londonise's +A Z: Londonizing's / B: Londonising's + +# longeval (level 80) +A: longeval / B: longaeval + +# longevous (level 70) +A: longevous / B: longaevous + +# loony (level 35) +_: loony / _V: looney +_: loonier / _V: looneyier +_: loonies / _V: looneyies / _V: looneys +_: loony's / _V: looney's + +# lordy (level 80) +A: lordy / B: lourdy + +# lorings (level 80) +A: lorings / B: lourings + +# lory (level 70) +A: lory / B: loury + +# louter (level 95) +A: louter / B: loutre + +# louver (level 50) +A Cv: louver / B C: louvre +A Cv: louvered / B C: louvred +A Cv: louvers / B C: louvres +A Cv: louver's / B C: louvre's + +# lovability (level 70) +A B: lovability / AV: lovaebility + +# lovable (level 35) +A B: lovable / AV Bv: loveable + +# lovableness (level 60) +A B: lovableness / AV: loveableness + +# lovably (level 60) +A B: lovably / AV: loveably + +# love (level 10) +A B: love / A-: luv +A B: loves / A-: luvs + +# loyalize (level 95) +A Z: loyalize / B: loyalise +A Z: loyalizes / B: loyalises + +# lumbarization (level 95) +A Z: lumbarization / B: lumbarisation +A Z: lumbarizations / B: lumbarisations +A Z: lumbarization's / B: lumbarisation's + +# lunatize (level 95) +A Z: lunatize / B: lunatise +A Z: lunatizes / B: lunatises + +# lunule (level 70) +A: lunule / B: lunulae + +# lupine (level 35) +A C: lupine / AV B Cv: lupin | plant +A C: lupines / AV B Cv: lupins | plant +A C: lupine's / AV B Cv: lupin's | plant +A B: lupine | wolfish + +# luster (level 35) +A: luster / AV B: lustre +A: lustered / AV B: lustred +A: lustering / AV B: lustring +A: luster's / AV B: lustre's +A: lustering's / AV B: lustring's +A: lusters / AV B: lustres + +# lusterless (level 60) +A: lusterless / B: lustreless +A: lusterlesser / B: lustrelesser +A: lusterlessest / B: lustrelessest + +# lusterware (level 70) +A: lusterware / B: lustreware +A: lusterwares / B: lustrewares +A: lusterware's / B: lustreware's + +# luteinization (level 80) +A Z: luteinization / B: luteinisation +A Z: luteinizations / B: luteinisations +A Z: luteinization's / B: luteinisation's + +# luteinize (level 80) +A Z: luteinize / B: luteinise +A Z: luteinized / B: luteinised +A Z: luteinizing / B: luteinising +A Z: luteinizes / B: luteinises + +# Lutheranize (level 95) +A Z: Lutheranize / B: Lutheranise +A Z: Lutheranizes / B: Lutheranises +A Z: Lutheranize's / B: Lutheranise's + +# Lutheranizer (level 95) +A Z: Lutheranizer / B: Lutheraniser +A Z: Lutheranizers / B: Lutheranisers +A Z: Lutheranizer's / B: Lutheraniser's + +# lutrine (level 95) +A: lutrine / B: lutrinae + +# luvvy (level 55) +_: luvvy / _V: luvvie | :1 +_: lovey / _-: luvvie | :2 +_: loveys / _-: luvvies | :2 + +# lymphedema (level 95) +A Dv: lymphedema / B D: lymphoedema + +# lymphemia (level 95) +A: lymphemia / B: lymphaemia + +# lyophilization (level 80) +A Z: lyophilization / B: lyophilisation +A Z: lyophilizations / B: lyophilisations +A Z: lyophilization's / B: lyophilisation's + +# lyophilize (level 70) +A Z: lyophilize / B: lyophilise +A Z: lyophilized / B: lyophilised +A Z: lyophilizing / B: lyophilising +A Z: lyophilizes / B: lyophilises + +# lyophilizer (level 80) +A Z: lyophilizer / B: lyophiliser + +# lyricization (level 95) +A Z: lyricization / B: lyricisation +A Z: lyricization's / B: lyricisation's + +# lyricize (level 80) +A Z: lyricize / B: lyricise +A Z: lyricized / B: lyricised +A Z: lyricizing / B: lyricising +A Z: lyricizes / B: lyricises + +# lysogenization (level 80) +A Z: lysogenization / B: lysogenisation + +# lysogenize (level 80) +A Z: lysogenize / B: lysogenise +A Z: lysogenized / B: lysogenised +A Z: lysogenizing / B: lysogenising +A Z: lysogenizes / B: lysogenises + +# mac (level 55) +_: mac / _v: mack +_: macs / _v: macks +_: mac's / _v: mack's + +# macadamization (level 80) +A Z: macadamization / B: macadamisation +A Z: macadamizations / B: macadamisations +A Z: macadamization's / B: macadamisation's + +# macadamize (level 60) +A Z: macadamize / B: macadamise +A Z: macadamized / B: macadamised +A Z: macadamizing / B: macadamising +A Z: macadamizes / B: macadamises + +# macarize (level 80) +A Z: macarize / B: macarise +A Z: macarized / B: macarised +A Z: macarizing / B: macarising +A Z: macarizes / B: macarises + +# Maccabean (level 70) +A: Maccabean / B: Maccabaean + +# machinization (level 95) +A Z: machinization / B: machinisation +A Z: machinizations / B: machinisations +A Z: machinization's / B: machinisation's + +# machinize (level 95) +A Z: machinize / B: machinise +A Z: machinizes / B: machinises + +# mackintosh (level 20) +A B: mackintosh / AV Bv: macintosh +A B: mackintoshes / AV Bv: macintoshes +A B: mackintosh's / AV Bv: macintosh's + +# macrander (level 95) +A: macrander / B: macrandre + +# macule (level 70) +A: macule / B: maculae + +# Madera (level 80) +A: Madera / B: Madoera +A: Madera's / B: Madoera's + +# maderization (level 80) +A Z: maderization / B: maderisation +A Z: maderizations / B: maderisations + +# maderize (level 80) +A Z: maderize / B: maderise +A Z: maderized / B: maderised +A Z: maderizing / B: maderising +A Z: maderizes / B: maderises + +# maed (level 80) +A: maed / B: maaed + +# magicalize (level 95) +A Z: magicalize / B: magicalise +A Z: magicalizes / B: magicalises + +# magnetizability (level 95) +A Z: magnetizability / B: magnetisability +A Z: magnetizabilities / B: magnetisabilities +A Z: magnetizability's / B: magnetisability's + +# magnetizable (level 60) +A Z: magnetizable / B: magnetisable +A Z: magnetizables / B: magnetisables +A Z: magnetizable's / B: magnetisable's + +# magnetization (level 50) +A Z: magnetization / B: magnetisation +A Z: magnetizations / B: magnetisations +A Z: magnetization's / B: magnetisation's + +# magnetize (level 35) +A Z: magnetize / B: magnetise +A Z: magnetized / B: magnetised +A Z: magnetizing / B: magnetising +A Z: magnetizes / B: magnetises + +# magnetizer (level 70) +A Z: magnetizer / B: magnetiser +A Z: magnetizers / B: magnetisers +A Z: magnetizer's / B: magnetiser's + +# maharajah (level 50) +_: maharajah / _v: maharaja +_: maharajah's / _v: maharaja's +_: maharajahes / _v: maharajas + +# maharani (level 50) +_: maharani / _v: maharanee +_: maharanis / _v: maharanees +_: maharani's / _v: maharanee's + +# mah-jongg (level 50) +_: mah-jongg / _v: mahjong +_: mah-jonggs / _v: mahjongs +_: mah-jongg's / _v: mahjong's + +# mahoganize (level 95) +A Z: mahoganize / B: mahoganise +A Z: mahoganized / B: mahoganised +A Z: mahoganizing / B: mahoganising +A Z: mahoganizes / B: mahoganises + +# maiger (level 70) +A: maiger / B: maigre + +# mainor (level 80) +A: mainor / B: mainour +A: mainors / B: mainours + +# mainprize (level 80) +A Z: mainprize / B: mainprise + +# maisters (level 80) +A: maisters / B: maistres + +# Maize (level 80) +A Z: Maize / B: Maise +A Z: Maize's / B: Maise's + +# majolica (level 60) +_: majolica / _V: maiolica +_: majolicas / _V: maiolicas +_: majolica's / _V: maiolica's + +# majorize (level 95) +A Z: majorize / B: majorise +A Z: majorizes / B: majorises + +# majuscule (level 70) +A: majuscule / B: majusculae + +# Malayize (level 95) +A Z: Malayize / B: Malayise +A Z: Malayizes / B: Malayises +A Z: Malayize's / B: Malayise's + +# malleablize (level 95) +A Z: malleablize / B: malleablise +A Z: malleablizes / B: malleablises + +# malodor (level 70) +A DV: malodor / B D: malodour +A DV: malodors / B D: malodours +A DV: malodor's / B D: malodour's + +# malodorousness (level 70) +A: malodorousness / B: malodourousness + +# mamma (level 35) +_ _-: mamma | gland +_: mammae / _-: mammas | gland +_ _-: mamma's | gland +_: mama / _V: momma / _V: mamma | mother +_: mamas / _V: mommas / _V: mammas | mother +_: mama's / _V: momma's / _V: mamma's | mother + +# mandarinize (level 95) +A Z: mandarinize / B: mandarinise +A Z: mandarinizes / B: mandarinises + +# Mandean (level 70) +A Bv: Mandean / B C: Mandaean +A Bv: Mandeans / B C: Mandaeans +A Bv: Mandean's / B C: Mandaean's + +# mandoer (level 95) +A: mandoer / B: mandore + +# mandrel (level 60) +_: mandrel / _V: mandril +_: mandrels / _V: mandrils +_: mandrel's / _V: mandril's + +# maneuver (level 35) +A Cv: maneuver / B C: manoeuvre / Cv: manoeuver +A Cv: maneuvered / B C: manoeuvred / Cv: manoeuvered +A Cv: maneuvering / B C: manoeuvring / Cv: manoeuvering +A Cv: maneuverings / B C: manoeuvrings / Cv: manoeuverings +A Cv: maneuvers / B C: manoeuvres / Cv: manoeuvers +A Cv: maneuver's / B C: manoeuvre's / Cv: manoeuver's + +# maneuverability (level 50) +A: maneuverability / B: manoeuvrability +A: maneuverabilities / B: manoeuvrabilities +A: maneuverability's / B: manoeuvrability's + +# maneuverable (level 50) +A: maneuverable / B: manoeuvrable +A: maneuverabler / B: manoeuvrabler +A: maneuverablest / B: manoeuvrablest + +# maneuverer (level 80) +A: maneuverer / B: manoeuvrer +A: maneuverers / B: manoeuvrers +A: maneuverer's / B: manoeuvrer's + +# Manhattanize (level 80) +A Z: Manhattanize / B: Manhattanise +A Z: Manhattanizes / B: Manhattanises + +# Manicheanism (level 80) +A: Manicheanism / B: Manichaeanism +A: Manicheanism's / B: Manichaeanism's + +# Manicheans (level 80) +A: Manicheans / B: Manichaeans + +# Manicheism (level 70) +A Bv: Manicheism / B: Manichaeism +A Bv: Manicheisms / B: Manichaeisms +A Bv: Manicheism's / B: Manichaeism's + +# Manicheus (level 95) +A: Manicheus / B: Manichaeus +A: Manicheus's / B: Manichaeus's + +# manikin (level 50) +_: manikin / _V: mannikin +_: manikins / _V: mannikins +_: manikin's / _V: mannikin's + +# manila (level 55) +A C: manila / AV B Cv: manilla | :lower +A C: manila's / AV B Cv: manilla's | :lower +A Bv C: Manila / AV B Cv: Manilla | :upper +A Bv C: Manila's / AV B Cv: Manilla's | :upper + +# mannerize (level 95) +A Z: mannerize / B: mannerise +A Z: mannerizes / B: mannerises + +# mantelpiece (level 35) +_: mantelpiece / _V: mantlepiece +_: mantelpieces / _V: mantlepieces + +# mantes (level 50) +A: mantes / B: mantoes + +# marabou (level 50) +_: marabou / _V: marabout | :1 +_: marabous / _V: marabouts | :1 +_: marabou's / _V: marabout's | :1 +_: marabout | :2 +_: marabouts | :2 +_: marabout's | :2 + +# marbleize (level 60) +A Z: marbleize / B: marbleise +A Z: marbleized / B: marbleised +A Z: marbleizing / B: marbleising +A Z: marbleizes / B: marbleises + +# margarite (level 70) +A: margarite / B: margaritae + +# marginalization (level 55) +A Z: marginalization / B: marginalisation + +# marginalize (level 55) +A Z: marginalize / B: marginalise +A Z: marginalized / B: marginalised +A Z: marginalizing / B: marginalising +A Z: marginalizes / B: marginalises + +# marijuana (level 35) +_: marijuana / _V: marihuana +_: marijuanas / _V: marihuanas +_: marijuana's / _V: marihuana's + +# marlinespike (level 60) +_: marlinespike / _V: marlinspike +_: marlinespikes / _V: marlinspikes +_: marlinespike's / _V: marlinspike's + +# marmarize (level 80) +A Z: marmarize / B: marmarise +A Z: marmarized / B: marmarised +A Z: marmarizing / B: marmarising +A Z: marmarizes / B: marmarises + +# marmelize (level 80) +A Z: marmelize / B: marmelise +A Z: marmelized / B: marmelised +A Z: marmelizing / B: marmelising +A Z: marmelizes / B: marmelises + +# marshal (level 35) +A: marshaled / B: marshalled +A: marshaling / B: marshalling + +# marsupialization (level 95) +A Z: marsupialization / B: marsupialisation +A Z: marsupializations / B: marsupialisations +A Z: marsupialization's / B: marsupialisation's + +# marsupialize (level 95) +A Z: marsupialize / B: marsupialise +A Z: marsupialized / B: marsupialised +A Z: marsupializing / B: marsupialising +A Z: marsupializes / B: marsupialises + +# Marte (level 95) +A: Marte / B: Martae +A: Marte's / B: Martae's + +# martialization (level 95) +A Z: martialization / B: martialisation +A Z: martializations / B: martialisations +A Z: martialization's / B: martialisation's + +# martialize (level 95) +A Z: martialize / B: martialise +A Z: martializes / B: martialises + +# martyrization (level 70) +A Z: martyrization / B: martyrisation +A Z: martyrizations / B: martyrisations +A Z: martyrization's / B: martyrisation's + +# martyrize (level 70) +A Z: martyrize / B: martyrise +A Z: martyrized / B: martyrised +A Z: martyrizing / B: martyrising +A Z: martyrizes / B: martyrises + +# martyrizer (level 95) +A Z: martyrizer / B: martyriser +A Z: martyrizers / B: martyrisers + +# marvel (level 35) +A: marveled / B: marvelled +A: marveling / B: marvelling + +# marveler (level 99) +A: marveler / B: marveller + +# marvelous (level 20) +A: marvelous / B: marvellous +A: marvelouser / B: marvellouser +A: marvelousest / B: marvellousest + +# marvelously (level 50) +A: marvelously / B: marvellously +A: marvelouslier / B: marvellouslier +A: marvelousliest / B: marvellousliest + +# marvelousness (level 70) +A: marvelousness / B: marvellousness +A: marvelousnesses / B: marvellousnesses +A: marvelousness's / B: marvellousness's + +# masculinization (level 80) +A Z: masculinization / B: masculinisation +A Z: masculinizations / B: masculinisations +A Z: masculinization's / B: masculinisation's + +# masculinize (level 80) +A Z: masculinize / B: masculinise +A Z: masculinized / B: masculinised +A Z: masculinizing / B: masculinising +A Z: masculinizes / B: masculinises + +# mat (level 35) +A Bv C: matte / Av: mat / AV B: matt | without lustre; cardboard ... picture +A: mat / A. Bv C: matte / AV B: matt | make matte # Ox Amer thinks its matte, M-W: mat +A: mats / A. Bv C: mattes / AV B: matts | make matte +A B: mat | otherwise, most uses +A B: mats | otherwise, most uses +A B: mat's | otherwise, most uses +A B: matte | otherwise, some uses +A B: mattes | otherwise, some uses +A B: matte's | otherwise, some uses +A B: matted | -- regardless of how mat is spelled +A B: matting | -- regardless of how mat is spelled +A B: Matt | Matthew + +# materialization (level 50) +A Z: materialization / B: materialisation +A Z: materializations / B: materialisations +A Z: materialization's / B: materialisation's + +# materialize (level 35) +A Z: materialize / B: materialise +A Z: materialized / B: materialised +A Z: materializing / B: materialising +A Z: materializes / B: materialises + +# materializer (level 80) +A Z: materializer / B: materialiser +A Z: materializers / B: materialisers +A Z: materializer's / B: materialiser's + +# maternalize (level 95) +A Z: maternalize / B: maternalise +A Z: maternalized / B: maternalised +A Z: maternalizing / B: maternalising +A Z: maternalizes / B: maternalises + +# maters (level 55) +A: maters / B: matres + +# math (level 35) +A C: math / B: maths + +# mathematicize (level 80) +A Z: mathematicize / B: mathematicise +A Z: mathematicized / B: mathematicised +A Z: mathematicizing / B: mathematicising +A Z: mathematicizes / B: mathematicises + +# mathematization (level 80) +A Z: mathematization / B: mathematisation +A Z: mathematizations / B: mathematisations +A Z: mathematization's / B: mathematisation's + +# mathematize (level 80) +A Z: mathematize / B: mathematise +A Z: mathematized / B: mathematised +A Z: mathematizing / B: mathematising +A Z: mathematizes / B: mathematises + +# matronize (level 70) +A Z: matronize / B: matronise +A Z: matronized / B: matronised +A Z: matronizing / B: matronising +A Z: matronizes / B: matronises + +# Matthean (level 80) +A: Matthean / B: Matthaean + +# maudlinize (level 95) +A Z: maudlinize / B: maudlinise +A Z: maudlinizes / B: maudlinises + +# mauger (level 70) +A: mauger / B: maugre + +# maven (level 50) +_: maven / _V: mavin +_: mavens / _V: mavins +_: maven's / _V: mavin's + +# maximization (level 50) +A Z: maximization / B: maximisation +A Z: maximizations / B: maximisations +A Z: maximization's / B: maximisation's + +# maximize (level 20) +A Z: maximize / B: maximise +A Z: maximized / B: maximised +A Z: maximizing / B: maximising +A Z: maximizes / B: maximises + +# maximizer (level 70) +A Z: maximizer / B: maximiser +A Z: maximizers / B: maximisers +A Z: maximizer's / B: maximiser's + +# mazurka (level 50) +_: mazurka / _V: mazourka +_: mazurkas / _V: mazourkas +_: mazurka's / _V: mazourka's + +# meager (level 35) +A Cv: meager / B C: meagre +A Cv: meagerrer / B C: meagrer +A Cv: meagerrest / B C: meagrest + +# meandrine (level 95) +A: meandrine / B: maeandrine + +# meandriniform (level 95) +A: meandriniform / B: maeandriniform + +# meanie (level 55) +_: meanie / _V: meany | :1 +_: meanie's / _V: meany's | :1 +_: meany | :2 +_: meany's | :2 + +# mechanicalization (level 95) +A Z: mechanicalization / B: mechanicalisation +A Z: mechanicalizations / B: mechanicalisations +A Z: mechanicalization's / B: mechanicalisation's + +# mechanicalize (level 95) +A Z: mechanicalize / B: mechanicalise +A Z: mechanicalizes / B: mechanicalises + +# mechanizable (level 70) +A Z: mechanizable / B: mechanisable + +# mechanization (level 40) +A Z: mechanization / B: mechanisation +A Z: mechanizations / B: mechanisations +A Z: mechanization's / B: mechanisation's + +# mechanize (level 35) +A Z: mechanize / B: mechanise +A Z: mechanized / B: mechanised +A Z: mechanizing / B: mechanising +A Z: mechanizes / B: mechanises + +# mechanizer (level 70) +A Z: mechanizer / B: mechaniser +A Z: mechanizers / B: mechanisers +A Z: mechanizer's / B: mechaniser's + +# meck (level 95) +A: meck / B: moeck + +# Med (level 80) +A: Med / B: Moed +A: Med's / B: Moed's + +# medal (level 80) +A: medaled / B: medalled +A: medaling / B: medalling + +# medalist (level 40) +A: medalist / B: medallist +A: medalists / B: medallists +A: medalist's / B: medallist's + +# medalize (level 95) +A Z: medalize / B: medalise +A Z: medalizes / B: medalises + +# medialization (level 95) +A Z: medialization / B: medialisation +A Z: medializations / B: medialisations +A Z: medialization's / B: medialisation's + +# medialize (level 95) +A Z: medialize / B: medialise +A Z: medializes / B: medialises + +# mediatization (level 80) +A Z: mediatization / B: mediatisation +A Z: mediatizations / B: mediatisations +A Z: mediatization's / B: mediatisation's + +# mediatize (level 70) +A Z: mediatize / B: mediatise +A Z: mediatized / B: mediatised +A Z: mediatizing / B: mediatising +A Z: mediatizes / B: mediatises + +# medicalization (level 80) +A Z: medicalization / B: medicalisation +A Z: medicalizations / B: medicalisations + +# medicalize (level 80) +A Z: medicalize / B: medicalise +A Z: medicalized / B: medicalised +A Z: medicalizing / B: medicalising +A Z: medicalizes / B: medicalises + +# medieval (level 20) +A B C: medieval / AV Bv: mediaeval +A B C: medievals / AV Bv: mediaevals +A B C: medieval's / AV Bv: mediaeval's + +# medievalism (level 70) +A: medievalism / B: mediaevalism +A: medievalisms / B: mediaevalisms +A: medievalism's / B: mediaevalism's + +# medievally (level 70) +A: medievally / AV B: mediaevally + +# Mediterraneanization (level 95) +A Z: Mediterraneanization / B: Mediterraneanisation +A Z: Mediterraneanizations / B: Mediterraneanisations +A Z: Mediterraneanization's / B: Mediterraneanisation's + +# Mediterraneanize (level 95) +A Z: Mediterraneanize / B: Mediterraneanise +A Z: Mediterraneanizes / B: Mediterraneanises +A Z: Mediterraneanize's / B: Mediterraneanise's + +# mediumization (level 95) +A Z: mediumization / B: mediumisation +A Z: mediumizations / B: mediumisations +A Z: mediumization's / B: mediumisation's + +# mediumize (level 95) +A Z: mediumize / B: mediumise +A Z: mediumizes / B: mediumises + +# megameter (level 95) +A: megameter / B: megametre + +# megbote (level 95) +A: megbote / B: maegbote + +# megerg (level 95) +A: megerg / B: megaerg + +# melanemia (level 80) +A Dv: melanemia / B D: melanaemia + +# melanemic (level 95) +A Dv: melanemic / B D: melanaemic + +# melanization (level 80) +A Z: melanization / B: melanisation + +# melanize (level 80) +A Z: melanize / B: melanise +A Z: melanized / B: melanised +A Z: melanizing / B: melanising +A Z: melanizes / B: melanises + +# mele (level 95) +A: mele / B: meloe + +# melena (level 80) +A: melena / B: melaena + +# melenic (level 95) +A: melenic / B: melaenic + +# Melie (level 95) +A: Melie / B: Meliae +A: Melie's / B: Meliae's + +# meline (level 95) +A: meline / B: melinae + +# melitemia (level 95) +A: melitemia / B: melitaemia + +# melithemia (level 95) +A: melithemia / B: melithaemia + +# mellon (level 80) +A: mellon / B: moellon + +# melodization (level 99) +A Z: melodization / B: melodisation + +# melodize (level 70) +A Z: melodize / B: melodise +A Z: melodized / B: melodised +A Z: melodizing / B: melodising +A Z: melodizes / B: melodises + +# melodizer (level 80) +A Z: melodizer / B: melodiser +A Z: melodizer's / B: melodiser's + +# melodramatization (level 80) +A Z: melodramatization / B: melodramatisation + +# melodramatize (level 70) +A Z: melodramatize / B: melodramatise +A Z: melodramatized / B: melodramatised +A Z: melodramatizing / B: melodramatising +A Z: melodramatizes / B: melodramatises + +# memorialization (level 80) +A Z: memorialization / B: memorialisation +A Z: memorializations / B: memorialisations +A Z: memorialization's / B: memorialisation's + +# memorialize (level 50) +A Z: memorialize / B: memorialise +A Z: memorialized / B: memorialised +A Z: memorializing / B: memorialising +A Z: memorializes / B: memorialises + +# memorializer (level 80) +A Z: memorializer / B: memorialiser +A Z: memorializers / B: memorialisers +A Z: memorializer's / B: memorialiser's + +# memorizable (level 80) +A Z: memorizable / B: memorisable +A Z: memorizables / B: memorisables +A Z: memorizable's / B: memorisable's + +# memorization (level 50) +A Z: memorization / B: memorisation +A Z: memorizations / B: memorisations +A Z: memorization's / B: memorisation's + +# memorize (level 35) +A Z: memorize / B: memorise +A Z: memorized / B: memorised +A Z: memorizing / B: memorising +A Z: memorizes / B: memorises + +# memorizer (level 70) +A Z: memorizer / B: memoriser +A Z: memorizers / B: memorisers +A Z: memorizer's / B: memoriser's + +# menad (level 70) +A B: maenad / AV: menad +A B: maenads / AV: menads +A B: maenad's / AV: menad's + +# menadic (level 70) +A B: maenadic / AV: menadic + +# Mendelize (level 95) +A Z: Mendelize / B: Mendelise +A Z: Mendelizes / B: Mendelises +A Z: Mendelize's / B: Mendelise's + +# meningorrhea (level 95) +A Dv: meningorrhea / B D: meningorrhoea + +# menorrhea (level 80) +A Dv: menorrhea / B D: menorrhoea +A Dv: menorrheas / B D: menorrhoeas + +# menorrheic (level 95) +A Dv: menorrheic / B D: menorrhoeic + +# mense (level 80) +A: mense / B: mensae + +# mentalization (level 95) +A Z: mentalization / B: mentalisation +A Z: mentalizations / B: mentalisations +A Z: mentalization's / B: mentalisation's + +# mentalize (level 95) +A Z: mentalize / B: mentalise +A Z: mentalizes / B: mentalises + +# meow (level 35) +A Bv C: meow / AV B: miaow +A Bv C: meowed / AV B: miaowed +A Bv C: meowing / AV B: miaowing +A Bv C: meows / AV B: miaows +A Bv C: meow's / AV B: miaow's + +# mephitine (level 95) +A: mephitine / B: mephitinae + +# Mera (level 95) +A: Mera / B: Maera +A: Mera's / B: Maera's + +# mercerization (level 70) +A Z: mercerization / B: mercerisation +A Z: mercerizations / B: mercerisations +A Z: mercerization's / B: mercerisation's + +# mercerize (level 50) +A Z: mercerize / B: mercerise +A Z: mercerized / B: mercerised +A Z: mercerizing / B: mercerising +A Z: mercerizes / B: mercerises + +# mercerizer (level 80) +A Z: mercerizer / B: merceriser +A Z: mercerizers / B: mercerisers +A Z: mercerizer's / B: merceriser's + +# merchandise (level 35) +_: merchandise / _V: merchandize | +_: merchandised / _V: merchandized | +_: merchandising / _V: merchandizing | +_: merchandises / _V: merchandizes | + +# merchandiser (level 60) +_: merchandiser / _-: merchandizer +_: merchandisers / _-: merchandizers +_: merchandiser's / _-: merchandizer's + +# mercurialization (level 80) +A Z: mercurialization / B: mercurialisation +A Z: mercurializations / B: mercurialisations +A Z: mercurialization's / B: mercurialisation's + +# mercurialize (level 70) +A Z: mercurialize / B: mercurialise +A Z: mercurialized / B: mercurialised +A Z: mercurializing / B: mercurialising +A Z: mercurializes / B: mercurialises + +# mercurize (level 80) +A Z: mercurize / B: mercurise +A Z: mercurized / B: mercurised +A Z: mercurizing / B: mercurising +A Z: mercurizes / B: mercurises + +# Meroe (level 95) +A: Meroe / B: Meroae +A: Meroe's / B: Meroae's + +# mesmerizability (level 95) +A Z: mesmerizability / B: mesmerisability +A Z: mesmerizabilities / B: mesmerisabilities +A Z: mesmerizability's / B: mesmerisability's + +# mesmerizable (level 95) +A Z: mesmerizable / B: mesmerisable +A Z: mesmerizables / B: mesmerisables +A Z: mesmerizable's / B: mesmerisable's + +# mesmerization (level 70) +A Z: mesmerization / B: mesmerisation +A Z: mesmerizations / B: mesmerisations +A Z: mesmerization's / B: mesmerisation's + +# mesmerize (level 40) +A Z: mesmerize / B: mesmerise +A Z: mesmerized / B: mesmerised +A Z: mesmerizing / B: mesmerising +A Z: mesmerizes / B: mesmerises + +# mesmerizer (level 60) +A Z: mesmerizer / B: mesmeriser +A Z: mesmerizers / B: mesmerisers +A Z: mesmerizer's / B: mesmeriser's + +# mesoglea (level 70) +A: mesoglea / B: mesogloea +A: mesogleas / B: mesogloeas + +# mesogleal (level 80) +A: mesogleal / B: mesogloeal + +# mesprize (level 80) +A Z: mesprize / B: mesprise +A Z: mesprizes / B: mesprises + +# mesquite (level 50) +_: mesquite / _-: mesquit | -- o: possible austrian variant +_: mesquites / _-: mesquits | -- o: possible austrian variant +_: mesquite's / _-: mesquit's | -- o: possible austrian variant + +# metabolizable (level 80) +A Z: metabolizable / B: metabolisable +A Z: metabolizables / B: metabolisables +A Z: metabolizable's / B: metabolisable's + +# metabolize (level 50) +A Z: metabolize / B: metabolise +A Z: metabolized / B: metabolised +A Z: metabolizing / B: metabolising +A Z: metabolizes / B: metabolises + +# metacenter (level 70) +A: metacenter / B: metacentre +A: metacenters / B: metacentres +A: metacenter's / B: metacentre's + +# metagrabolize (level 80) +A Z: metagrabolize / B: metagrabolise +A Z: metagrabolized / B: metagrabolised +A Z: metagrabolizing / B: metagrabolising +A Z: metagrabolizes / B: metagrabolises + +# metagrobolize (level 80) +A Z: metagrobolize / B: metagrobolise +A Z: metagrobolized / B: metagrobolised +A Z: metagrobolizing / B: metagrobolising +A Z: metagrobolizes / B: metagrobolises + +# metal (level 55) +A Cv: metaled / B C: metalled +A Cv: metaling / B C: metalling + +# metalization (level 80) +A: metalization / B: metallisation / Z: metallization +A: metalizations / B: metallisations / Z: metallizations +A: metalization's / B: metallisation's / Z: metallization's + +# metalize (level 70) +A: metalize / B: metallise / Z: metallize +A: metalized / B: metallised / Z: metallized +A: metalizing / B: metallising / Z: metallizing +A: metalizes / B: metallises / Z: metallizes + +# metamerization (level 95) +A Z: metamerization / B: metamerisation +A Z: metamerizations / B: metamerisations +A Z: metamerization's / B: metamerisation's + +# metamerized (level 95) +A Z: metamerized / B: metamerised +A Z: metamerizeds / B: metameriseds +A Z: metamerized's / B: metamerised's + +# metaphonize (level 95) +A Z: metaphonize / B: metaphonise +A Z: metaphonizes / B: metaphonises + +# metaphorize (level 95) +A Z: metaphorize / B: metaphorise +A Z: metaphorizes / B: metaphorises + +# metaphysicize (level 95) +A Z: metaphysicize / B: metaphysicise +A Z: metaphysicizes / B: metaphysicises + +# metastasize (level 50) +A Z: metastasize / B: metastasise +A Z: metastasized / B: metastasised +A Z: metastasizing / B: metastasising +A Z: metastasizes / B: metastasises + +# metathesize (level 60) +A Z: metathesize / B: metathesise +A Z: metathesized / B: metathesised +A Z: metathesizing / B: metathesising +A Z: metathesizes / B: metathesises + +# meteorization (level 95) +A Z: meteorization / B: meteorisation +A Z: meteorizations / B: meteorisations +A Z: meteorization's / B: meteorisation's + +# meteorize (level 95) +A Z: meteorize / B: meteorise +A Z: meteorizes / B: meteorises + +# meter (level 20) +A B: meter | measuring device +A B: meters | measuring device +A B: meter's | measuring device +A Cv: meter / B C: metre | metric meter, rhythmic pattern +A Cv: meters / B C: metres | metric meter, rhythmic pattern +A Cv: meter's / B C: metre's | metric meter, rhythmic pattern + +# metergram (level 95) +A: metergram / B: metregram + +# meterless (level 95) +A: meterless / B: metreless + +# metership (level 95) +A: metership / B: metreship + +# metestrus (level 80) +A: metestrus / B: metoestrus +A: metestrus's / B: metoestrus's + +# methadone (level 40) +_: methadone / _V: methadon +_: methadones / _V: methadons +_: methadone's / _V: methadon's + +# methemoglobin (level 70) +A Dv: methemoglobin / B D: methaemoglobin + +# methodization (level 80) +A Z: methodization / B: methodisation +A Z: methodizations / B: methodisations +A Z: methodization's / B: methodisation's + +# methodize (level 70) +A Z: methodize / B: methodise +A Z: methodized / B: methodised +A Z: methodizing / B: methodising +A Z: methodizes / B: methodises + +# methodizer (level 80) +A Z: methodizer / B: methodiser +A Z: methodizers / B: methodisers +A Z: methodizer's / B: methodiser's + +# metope (level 70) +A: metope / B: metopae + +# metricize (level 60) +A Z: metricize / B: metricise +A Z: metricized / B: metricised +A Z: metricizing / B: metricising +A Z: metricizes / B: metricises + +# metrize (level 95) +A Z: metrize / B: metrise + +# metropolitanization (level 80) +A Z: metropolitanization / B: metropolitanisation + +# metropolitanize (level 80) +A Z: metropolitanize / B: metropolitanise +A Z: metropolitanized / B: metropolitanised +A Z: metropolitanizing / B: metropolitanising +A Z: metropolitanizes / B: metropolitanises + +# Mexicanize (level 95) +A Z: Mexicanize / B: Mexicanise +A Z: Mexicanizes / B: Mexicanises +A Z: Mexicanize's / B: Mexicanise's + +# micelle (level 70) +A: micelle / B: micellae + +# micresthete (level 95) +A: micresthete / B: micraesthete + +# microcolorimeter (level 95) +A: microcolorimeter / B: microcolourimeter + +# microcolorimetric (level 95) +A: microcolorimetric / B: microcolourimetric + +# microcolorimetrically (level 95) +A: microcolorimetrically / B: microcolourimetrically + +# microcolorimetry (level 95) +A: microcolorimetry / B: microcolourimetry + +# microliter (level 80) +A: microliter / B: microlitre +A: microliters / B: microlitres +A: microliter's / B: microlitre's + +# micrometer (level 35) +A B: micrometer | gauge +A B: micrometers | gauge +A B: micrometer's | gauge +A: micrometer / B: micrometre | metric meter +A: micrometers / B: micrometres | metric meter +A: micrometer's / B: micrometre's | metric meter + +# micromillimeter (level 70) +A: micromillimeter / B: micromillimetre +A: micromillimeters / B: micromillimetres +A: micromillimeter's / B: micromillimetre's + +# microminiaturization (level 70) +A Z: microminiaturization / B: microminiaturisation +A Z: microminiaturizations / B: microminiaturisations +A Z: microminiaturization's / B: microminiaturisation's + +# microminiaturize (level 70) +A Z: microminiaturize / B: microminiaturise +A Z: microminiaturized / B: microminiaturised +A Z: microminiaturizing / B: microminiaturising +A Z: microminiaturizes / B: microminiaturises + +# microminiaturizer (level 99) +A Z: microminiaturizer / B: microminiaturiser +A Z: microminiaturizers / B: microminiaturisers + +# micronization (level 95) +A Z: micronization / B: micronisation +A Z: micronizations / B: micronisations +A Z: micronization's / B: micronisation's + +# micronize (level 80) +A Z: micronize / B: micronise +A Z: micronizes / B: micronises + +# micropaleontologist (level 80) +A Dv: micropaleontologist / B D: micropalaeontologist +A Dv: micropaleontologists / B D: micropalaeontologists + +# micropaleontology (level 70) +A Dv: micropaleontology / B D: micropalaeontology +A Dv: micropaleontologies / B D: micropalaeontologies +A Dv: micropaleontology's / B D: micropalaeontology's + +# micropolarization (level 95) +A Z: micropolarization / B: micropolarisation +A Z: micropolarizations / B: micropolarisations +A Z: micropolarization's / B: micropolarisation's + +# microscopize (level 95) +A Z: microscopize / B: microscopise +A Z: microscopizes / B: microscopises + +# microspheric (level 95) +A: microspheric / B: microsphaeric + +# Midlandize (level 95) +A Z: Midlandize / B: Midlandise +A Z: Midlandizes / B: Midlandises +A Z: Midlandize's / B: Midlandise's + +# midsize (level 55) +_: midsize / _V: midsized + +# midwife (level 35) +_: midwifed / _v: midwived +_: midwifing / _v: midwiving + +# migniardize (level 95) +A Z: migniardize / B: migniardise + +# militarization (level 50) +A Z: militarization / B: militarisation +A Z: militarizations / B: militarisations +A Z: militarization's / B: militarisation's + +# militarize (level 50) +A Z: militarize / B: militarise +A Z: militarized / B: militarised +A Z: militarizing / B: militarising +A Z: militarizes / B: militarises + +# milligram (level 35) +A B: milligram / Bv: milligramme +A B: milligrams / Bv: milligrammes +A B: milligram's / Bv: milligramme's + +# milliliter (level 40) +A: milliliter / B: millilitre +A: milliliters / B: millilitres +A: milliliter's / B: millilitre's + +# millimeter (level 35) +A: millimeter / B: millimetre +A: millimeters / B: millimetres +A: millimeter's / B: millimetre's + +# millionaire (level 35) +_: millionaire / _-: millionnaire +_: millionaires / _-: millionnaires +_: millionaire's / _-: millionnaire's + +# millionize (level 95) +A Z: millionize / B: millionise +A Z: millionizes / B: millionises + +# millipede (level 50) +_: millipede / _V: millepede +_: millipedes / _V: millepedes +_: millipede's / _V: millepede's + +# milometer (level 55) +_: milometer / _-: mileometer +_: milometers / _-: mileometers +_: milometer's / _-: mileometer's + +# Miltonize (level 95) +A Z: Miltonize / B: Miltonise +A Z: Miltonized / B: Miltonised +A Z: Miltonized's / B: Miltonised's +A Z: Miltonizing / B: Miltonising +A Z: Miltonizes / B: Miltonises +A Z: Miltonize's / B: Miltonise's +A Z: Miltonizing's / B: Miltonising's + +# mineralizable (level 80) +A Z: mineralizable / B: mineralisable +A Z: mineralizables / B: mineralisables +A Z: mineralizable's / B: mineralisable's + +# mineralization (level 70) +A Z: mineralization / B: mineralisation +A Z: mineralizations / B: mineralisations +A Z: mineralization's / B: mineralisation's + +# mineralize (level 70) +A Z: mineralize / B: mineralise +A Z: mineralized / B: mineralised +A Z: mineralizing / B: mineralising +A Z: mineralizes / B: mineralises + +# mineralizer (level 80) +A Z: mineralizer / B: mineraliser +A Z: mineralizers / B: mineralisers +A Z: mineralizer's / B: mineraliser's + +# mineralogize (level 80) +A Z: mineralogize / B: mineralogise +A Z: mineralogized / B: mineralogised +A Z: mineralogizing / B: mineralogising +A Z: mineralogizes / B: mineralogises + +# miniaturization (level 50) +A Z: miniaturization / B: miniaturisation +A Z: miniaturizations / B: miniaturisations +A Z: miniaturization's / B: miniaturisation's + +# miniaturize (level 50) +A Z: miniaturize / B: miniaturise +A Z: miniaturized / B: miniaturised +A Z: miniaturizing / B: miniaturising +A Z: miniaturizes / B: miniaturises + +# minibuses (level 35) +A B: minibuses / AV: minibusses + +# minimization (level 50) +A Z: minimization / B: minimisation +A Z: minimizations / B: minimisations +A Z: minimization's / B: minimisation's + +# minimize (level 20) +A Z: minimize / B: minimise +A Z: minimized / B: minimised +A Z: minimizing / B: minimising +A Z: minimizes / B: minimises + +# minimizer (level 70) +A Z: minimizer / B: minimiser +A Z: minimizers / B: minimisers +A Z: minimizer's / B: minimiser's + +# minuscule (level 35) +_: minuscule / _V: miniscule +_: minuscules / _V: miniscules +_: minuscule's / _V: miniscule's + +# miraculize (level 95) +A Z: miraculize / B: miraculise +A Z: miraculized / B: miraculised +A Z: miraculizing / B: miraculising +A Z: miraculizes / B: miraculises + +# mirrorize (level 95) +A Z: mirrorize / B: mirrorise +A Z: mirrorizes / B: mirrorises + +# misadvize (level 70) +A Z: misadvize / B: misadvise + +# misalphabetize (level 70) +A Z: misalphabetize / B: misalphabetise +A Z: misalphabetizes / B: misalphabetises + +# misanthropize (level 95) +A Z: misanthropize / B: misanthropise +A Z: misanthropized / B: misanthropised +A Z: misanthropizing / B: misanthropising +A Z: misanthropizes / B: misanthropises + +# misauthorization (level 95) +A Z: misauthorization / B: misauthorisation +A Z: misauthorizations / B: misauthorisations +A Z: misauthorization's / B: misauthorisation's + +# misauthorize (level 95) +A Z: misauthorize / B: misauthorise +A Z: misauthorizes / B: misauthorises + +# misbaptize (level 95) +A Z: misbaptize / B: misbaptise +A Z: misbaptizes / B: misbaptises + +# misbehavior (level 35) +A DV: misbehavior / B D: misbehaviour +A DV: misbehaviors / B D: misbehaviours +A DV: misbehavior's / B D: misbehaviour's + +# miscanonize (level 95) +A Z: miscanonize / B: miscanonise +A Z: miscanonizes / B: miscanonises + +# mischaracterization (level 80) +A Z: mischaracterization / B: mischaracterisation +A Z: mischaracterizations / B: mischaracterisations +A Z: mischaracterization's / B: mischaracterisation's + +# mischaracterize (level 70) +A Z: mischaracterize / B: mischaracterise +A Z: mischaracterizes / B: mischaracterises + +# miscolor (level 80) +A DV: miscolor / B D: miscolour +A DV: miscolored / B D: miscoloured +A DV: miscoloring / B D: miscolouring +A DV: miscolors / B D: miscolours +A DV: miscolor's / B D: miscolour's + +# miscoloration (level 95) +A: miscoloration / B: miscolouration + +# misdemeanor (level 35) +A Cv DV: misdemeanor / B C D: misdemeanour +A Cv DV: misdemeanors / B C D: misdemeanours +A Cv DV: misdemeanor's / B C D: misdemeanour's + +# misemphasize (level 80) +A Z: misemphasize / B: misemphasise +A Z: misemphasizes / B: misemphasises + +# misjudgment (level 40) +A Bv C: misjudgment / B Cv: misjudgement +A Bv C: misjudgments / B Cv: misjudgements +A Bv C: misjudgment's / B Cv: misjudgement's + +# mislabel (level 60) +A: mislabeled / B: mislabelled +A: mislabeling / B: mislabelling + +# mislabor (level 80) +A DV: mislabor / B D: mislabour +A DV: mislabored / B D: mislaboured +A DV: mislaboring / B D: mislabouring +A DV: mislabors / B D: mislabours +A DV: mislabor's / B D: mislabour's + +# misopedia (level 95) +A Dv: misopedia / B D: misopaedia + +# misopedism (level 95) +A Dv: misopedism / B D: misopaedism + +# misopedist (level 95) +A Dv: misopedist / B D: misopaedist +A Dv: misopedist's / B D: misopaedist's + +# misorganization (level 95) +A Z: misorganization / B: misorganisation +A Z: misorganizations / B: misorganisations +A Z: misorganization's / B: misorganisation's + +# misorganize (level 95) +A Z: misorganize / B: misorganise +A Z: misorganizes / B: misorganises + +# misprizal (level 95) +A Z: misprizal / B: misprisal + +# misprize (level 70) +A B: misprize / B-: misprise +A B: misprized / B-: misprised +A B: misprizing / B-: misprising +A B: misprizes / B-: misprises + +# misprizer (level 80) +A Z: misprizer / B: mispriser + +# misrealize (level 95) +A Z: misrealize / B: misrealise +A Z: misrealizes / B: misrealises + +# misrecognize (level 95) +A Z: misrecognize / B: misrecognise +A Z: misrecognizes / B: misrecognises + +# misrouting (level 80) +A: misrouting / B: misrouteing + +# missilery (level 50) +_: missilery / _-: missilry +_: missilery's / _-: missilry's + +# missionarize (level 80) +A Z: missionarize / B: missionarise +A Z: missionarized / B: missionarised +A Z: missionarizing / B: missionarising +A Z: missionarizes / B: missionarises + +# missionization (level 80) +A Z: missionization / B: missionisation + +# missionize (level 80) +A Z: missionize / B: missionise +A Z: missionized / B: missionised +A Z: missionizing / B: missionising +A Z: missionizes / B: missionises + +# missionizer (level 80) +A Z: missionizer / B: missioniser +A Z: missionizers / B: missionisers + +# missus (level 55) +_: missus / _v: missis +_: missuses / _v: missises +_: missus's / _v: missis's + +# miter (level 50) +A: miter / B: mitre +A: mitered / B: mitred +A: mitering / B: mitring +A: miters / B: mitres +A: miter's / B: mitre's + +# miterer (level 80) +A: miterer / B: mitrer +A: miterer's / B: mitrer's + +# miterflower (level 95) +A: miterflower / B: mitreflower + +# miterwort (level 70) +A: miterwort / B: mitrewort +A: miterworts / B: mitreworts +A: miterwort's / B: mitrewort's + +# mithridatize (level 80) +A Z: mithridatize / B: mithridatise +A Z: mithridatized / B: mithridatised +A Z: mithridatizing / B: mithridatising +A Z: mithridatizes / B: mithridatises + +# mize (level 70) +A Z: mize / B: mise + +# mobilizable (level 70) +A Z: mobilizable / B: mobilisable +A Z: mobilizabler / B: mobilisabler +A Z: mobilizables / B: mobilisables +A Z: mobilizablest / B: mobilisablest +A Z: mobilizable's / B: mobilisable's + +# mobilization (level 35) +A Z: mobilization / B: mobilisation +A Z: mobilizations / B: mobilisations +A Z: mobilization's / B: mobilisation's + +# mobilize (level 35) +A Z: mobilize / B: mobilise +A Z: mobilized / B: mobilised +A Z: mobilizing / B: mobilising +A Z: mobilizes / B: mobilises + +# mobilizer (level 60) +A Z: mobilizer / B: mobiliser +A Z: mobilizers / B: mobilisers +A Z: mobilizer's / B: mobiliser's + +# modalize (level 95) +A Z: modalize / B: modalise +A Z: modalizes / B: modalises + +# model (level 20) +A: modeled / B: modelled +A: modeler / B: modeller +A: modelers / B: modellers +A: modeler's / B: modeller's +A: modeling / B: modelling +A: modelings / B: modellings +A: modeling's / B: modelling's + +# modernizable (level 95) +A Z: modernizable / B: modernisable +A Z: modernizables / B: modernisables +A Z: modernizable's / B: modernisable's + +# modernization (level 35) +A Z: modernization / B: modernisation +A Z: modernizations / B: modernisations +A Z: modernization's / B: modernisation's + +# modernize (level 35) +A Z: modernize / B: modernise +A Z: modernized / B: modernised +A Z: modernizing / B: modernising +A Z: modernizes / B: modernises + +# modernizer (level 60) +A Z: modernizer / B: moderniser +A Z: modernizers / B: modernisers +A Z: modernizer's / B: moderniser's + +# modularization (level 95) +A Z: modularization / B: modularisation + +# modularize (level 70) +A Z: modularize / B: modularise +A Z: modularized / B: modularised +A Z: modularizing / B: modularising +A Z: modularizes / B: modularises + +# moggy (level 55) +A Bv: moggy / AV B C: moggie +A Bv: moggy's / AV B C: moggie's + +# Mohammedanization (level 95) +A Z: Mohammedanization / B: Mohammedanisation +A Z: Mohammedanizations / B: Mohammedanisations +A Z: Mohammedanization's / B: Mohammedanisation's + +# Mohammedanize (level 80) +A Z: Mohammedanize / B: Mohammedanise +A Z: Mohammedanized / B: Mohammedanised +A Z: Mohammedanized's / B: Mohammedanised's +A Z: Mohammedanizing / B: Mohammedanising +A Z: Mohammedanizes / B: Mohammedanises +A Z: Mohammedanize's / B: Mohammedanise's +A Z: Mohammedanizing's / B: Mohammedanising's + +# moisturization (level 99) +A Z: moisturization / B: moisturisation + +# moisturize (level 50) +A Z: moisturize / B: moisturise +A Z: moisturized / B: moisturised +A Z: moisturizing / B: moisturising +A Z: moisturizes / B: moisturises + +# moisturizer (level 40) +A Z: moisturizer / B: moisturiser +A Z: moisturizers / B: moisturisers +A Z: moisturizer's / B: moisturiser's + +# molarization (level 99) +A Z: molarization / B: molarisation +A Z: molarizations / B: molarisations + +# mold (level 20) +A Cv DV: mold / B C D: mould +A Cv DV: molded / B C D: moulded +A Cv DV: molding / B C D: moulding +A Cv DV: mold's / B C D: mould's +A Cv DV: moldings / B C D: mouldings +A Cv DV: molding's / B C D: moulding's +A Cv DV: molds / B C D: moulds + +# molder (level 50) +A DV: molder / B D: moulder +A DV: molder's / B D: moulder's +A DV: moldered / B D: mouldered +A DV: moldering / B D: mouldering +A DV: molders / B D: moulders + +# moldy (level 35) +A Cv DV: moldy / B C D: mouldy +A Cv DV: moldier / B C D: mouldier +A Cv DV: moldiest / B C D: mouldiest + +# molluscan (level 60) +A B: molluscan / Av: molluskan + +# mollusk (level 35) +A: mollusk / Av B: mollusc +A: mollusks / Av B: molluscs +A: mollusk's / Av B: mollusc's + +# Molochize (level 80) +A Z: Molochize / B: Molochise +A Z: Molochizes / B: Molochises +A Z: Molochize's / B: Molochise's +A Z: molochize / B: molochise +A Z: molochized / B: molochised +A Z: molochizing / B: molochising +A Z: molochizes / B: molochises + +# molt (level 35) +A DV: molt / B D: moult +A DV: molt's / B D: moult's +A DV: molted / B D: moulted +A DV: molting / B D: moulting +A DV: molts / B D: moults + +# mom (level 35) +A C: mom / B: mum | mother +A C: moms / B: mums | mother +A C: mom's / B: mum's | mother +A B: mum | silent + +# mommy (level 40) +_: mommy / _-: mommie +_: mommy's / _-: mommie's + +# monarchize (level 80) +A Z: monarchize / B: monarchise +A Z: monarchized / B: monarchised +A Z: monarchizing / B: monarchising +A Z: monarchizes / B: monarchises + +# monarchizer (level 95) +A Z: monarchizer / B: monarchiser +A Z: monarchizers / B: monarchisers + +# monasticize (level 95) +A Z: monasticize / B: monasticise +A Z: monasticizes / B: monasticises + +# monecian (level 80) +A: monecian / B: monoecian + +# monecious (level 70) +A B: monoecious / AV: monecious + +# monestrous (level 80) +A: monestrous / B: monoestrous + +# monetization (level 70) +A Z: monetization / B: monetisation +A Z: monetizations / B: monetisations +A Z: monetization's / B: monetisation's + +# monetize (level 60) +A Z: monetize / B: monetise +A Z: monetized / B: monetised +A Z: monetizing / B: monetising +A Z: monetizes / B: monetises + +# moneyed (level 50) +_: moneyed / _V: monied + +# Mongolize (level 80) +A Z: Mongolize / B: Mongolise +A Z: Mongolized / B: Mongolised +A Z: Mongolized's / B: Mongolised's +A Z: Mongolizing / B: Mongolising +A Z: Mongolizes / B: Mongolises +A Z: Mongolize's / B: Mongolise's +A Z: Mongolizing's / B: Mongolising's + +# mongrelization (level 80) +A Z: mongrelization / B: mongrelisation +A Z: mongrelizations / B: mongrelisations +A Z: mongrelization's / B: mongrelisation's + +# mongrelize (level 70) +A Z: mongrelize / B: mongrelise +A Z: mongrelized / B: mongrelised +A Z: mongrelizing / B: mongrelising +A Z: mongrelizes / B: mongrelises + +# mongrelizer (level 95) +A Z: mongrelizer / B: mongreliser + +# moniker (level 40) +_: moniker / _V: monicker +_: monikers / _V: monickers +_: moniker's / _V: monicker's + +# monochordize (level 95) +A Z: monochordize / B: monochordise +A Z: monochordizes / B: monochordises + +# monologist (level 60) +A B: monologist / Av Bv: monologuist +A B: monologists / Av Bv: monologuists +A B: monologist's / Av Bv: monologuist's + +# monologize (level 80) +A Z: monologize / B: monologise +A Z: monologized / B: monologised +A Z: monologizing / B: monologising +A Z: monologizes / B: monologises + +# monologue (level 35) +A B: monologue / AV: monolog +A B: monologues / AV: monologs +A B: monologue's / AV: monolog's + +# monologuize (level 80) +A Z: monologuize / B: monologuise +A Z: monologuized / B: monologuised +A Z: monologuizing / B: monologuising +A Z: monologuizes / B: monologuises + +# monometalism (level 70) +A: monometalism / B: monometallism + +# monometalist (level 80) +A: monometalist / B: monometallist + +# monophthongize (level 80) +A Z: monophthongize / B: monophthongise +A Z: monophthongized / B: monophthongised +A Z: monophthongizing / B: monophthongising +A Z: monophthongizes / B: monophthongises + +# monopolizable (level 95) +A Z: monopolizable / B: monopolisable +A Z: monopolizables / B: monopolisables +A Z: monopolizable's / B: monopolisable's + +# monopolization (level 40) +A Z: monopolization / B: monopolisation +A Z: monopolizations / B: monopolisations +A Z: monopolization's / B: monopolisation's + +# monopolize (level 35) +A Z: monopolize / B: monopolise +A Z: monopolized / B: monopolised +A Z: monopolizing / B: monopolising +A Z: monopolizes / B: monopolises + +# monopolizer (level 60) +A Z: monopolizer / B: monopoliser +A Z: monopolizers / B: monopolisers +A Z: monopolizer's / B: monopoliser's + +# monotonize (level 95) +A Z: monotonize / B: monotonise +A Z: monotonizes / B: monotonises + +# monumentalization (level 95) +A Z: monumentalization / B: monumentalisation +A Z: monumentalizations / B: monumentalisations +A Z: monumentalization's / B: monumentalisation's + +# monumentalize (level 70) +A Z: monumentalize / B: monumentalise +A Z: monumentalized / B: monumentalised +A Z: monumentalizing / B: monumentalising +A Z: monumentalizes / B: monumentalises + +# moralization (level 60) +A Z: moralization / B: moralisation +A Z: moralizations / B: moralisations +A Z: moralization's / B: moralisation's + +# moralize (level 50) +A Z: moralize / B: moralise +A Z: moralized / B: moralised +A Z: moralizing / B: moralising +A Z: moralizes / B: moralises + +# moralizer (level 60) +A Z: moralizer / B: moraliser +A Z: moralizers / B: moralisers +A Z: moralizer's / B: moraliser's + +# moralizingly (level 70) +A Z: moralizingly / B: moralisingly +A Z: moralizinglies / B: moralisinglies + +# Moravianized (level 95) +A Z: Moravianized / B: Moravianised +A Z: Moravianizeds / B: Moravianiseds +A Z: Moravianized's / B: Moravianised's + +# morbidize (level 95) +A Z: morbidize / B: morbidise +A Z: morbidizes / B: morbidises + +# Morea (level 70) +A: Morea / B: Moraea +A: Morea's / B: Moraea's + +# morne (level 80) +A: morne / B: mourne + +# morningly (level 80) +A: morningly / B: mourningly + +# morphinization (level 95) +A Z: morphinization / B: morphinisation +A Z: morphinizations / B: morphinisations +A Z: morphinization's / B: morphinisation's + +# morphinize (level 95) +A Z: morphinize / B: morphinise +A Z: morphinizes / B: morphinises + +# morsel (level 80) +A: morseled / B: morselled +A: morseling / B: morselling + +# morselization (level 95) +A Z: morselization / B: morselisation +A Z: morselizations / B: morselisations +A Z: morselization's / B: morselisation's + +# morselize (level 95) +A Z: morselize / B: morselise +A Z: morselizes / B: morselises + +# mortalize (level 80) +A Z: mortalize / B: mortalise +A Z: mortalized / B: mortalised +A Z: mortalizing / B: mortalising +A Z: mortalizes / B: mortalises + +# mortarize (level 95) +A Z: mortarize / B: mortarise +A Z: mortarizes / B: mortarises + +# mortgagor (level 50) +_: mortgagor / _V: mortgager +_: mortgagors / _V: mortgagers +_: mortgagor's / _V: mortgager's + +# mortise (level 50) +_: mortise / _V: mortice +_: mortised / _V: morticed +_: mortising / _V: morticing +_: mortises / _V: mortices +_: mortise's / _V: mortice's + +# morule (level 80) +A: morule / B: morulae + +# Moslemize (level 95) +A Z: Moslemize / B: Moslemise +A Z: Moslemizes / B: Moslemises +A Z: Moslemize's / B: Moslemise's + +# motorization (level 60) +A Z: motorization / B: motorisation +A Z: motorizations / B: motorisations +A Z: motorization's / B: motorisation's + +# motorize (level 35) +A Z: motorize / B: motorise +A Z: motorized / B: motorised +A Z: motorizing / B: motorising +A Z: motorizes / B: motorises + +# mousy (level 35) +_: mousy / _v: mousey + +# movability (level 70) +A B: movability / Av: moveability + +# movable (level 35) +A B: movable / Av Bv: moveable +A B: movables / Av Bv: moveables +A B: movable's / Av Bv: moveable's + +# movableness (level 70) +_: movableness / _v: moveableness +_: movablenesses / _v: moveablenesses + +# movably (level 70) +_: movably / _v: moveably + +# mucorrhea (level 95) +A Dv: mucorrhea / B D: mucorrhoea + +# mucose (level 70) +A: mucose / B: mucosae + +# mujahideen (level 60) +_: mujahideen / _v: mujahedin / _V: mujahedeen +_: mujahideen's / _v: mujahedin's / _V: mujahedeen's + +# multicolor (level 70) +A DV: multicolor / B D: multicolour +A DV: multicolors / B D: multicolours +A DV: multicolor's / B D: multicolour's + +# multicolored (level 50) +A DV: multicolored / B D: multicoloured +A DV: multicoloredder / B D: multicolouredder +A DV: multicoloreddest / B D: multicoloureddest + +# multicolorous (level 95) +A: multicolorous / B: multicolourous + +# multifibered (level 95) +A: multifibered / B: multifibred +A: multifibereds / B: multifibreds +A: multifibered's / B: multifibred's + +# multileveled (level 80) +A: multileveled / B: multilevelled + +# multiplexer (level 50) +A B: multiplexer / AV Bv: multiplexor +A B: multiplexers / AV Bv: multiplexors +A B: multiplexer's / AV Bv: multiplexor's + +# municipalization (level 80) +A Z: municipalization / B: municipalisation +A Z: municipalizations / B: municipalisations +A Z: municipalization's / B: municipalisation's + +# municipalize (level 70) +A Z: municipalize / B: municipalise +A Z: municipalized / B: municipalised +A Z: municipalizing / B: municipalising +A Z: municipalizes / B: municipalises + +# municipalizer (level 95) +A Z: municipalizer / B: municipaliser +A Z: municipalizers / B: municipalisers + +# murena (level 80) +A: murena / B: muraena +A: murenas / B: muraenas + +# muscularize (level 95) +A Z: muscularize / B: muscularise +A Z: muscularizes / B: muscularises + +# museumize (level 95) +A Z: museumize / B: museumise +A Z: museumizes / B: museumises + +# musicalization (level 80) +A Z: musicalization / B: musicalisation +A Z: musicalizations / B: musicalisations +A Z: musicalization's / B: musicalisation's + +# musicalize (level 80) +A Z: musicalize / B: musicalise +A Z: musicalized / B: musicalised +A Z: musicalizing / B: musicalising +A Z: musicalizes / B: musicalises + +# Muslim (level 35) +_: Muslim / _v: Moslem +_: Muslim's / _v: Moslem's + +# mustache (level 35) +A Cv: mustache / B C: moustache +A Cv: mustaches / B C: moustaches +A Cv: mustache's / B C: moustache's + +# mustached (level 55) +A: mustached / B: moustached + +# mustachio (level 60) +_: mustachio / _V: moustachio +_: mustachio's / _V: moustachio's + +# mustachioed (level 55) +_: mustachioed / _V: moustachioed + +# mutagenize (level 80) +A Z: mutagenize / B: mutagenise +A Z: mutagenized / B: mutagenised +A Z: mutagenizing / B: mutagenising +A Z: mutagenizes / B: mutagenises + +# mutualization (level 80) +A Z: mutualization / B: mutualisation +A Z: mutualizations / B: mutualisations +A Z: mutualization's / B: mutualisation's + +# mutualize (level 70) +A Z: mutualize / B: mutualise +A Z: mutualized / B: mutualised +A Z: mutualizing / B: mutualising +A Z: mutualizes / B: mutualises + +# mycohemia (level 95) +A Dv: mycohemia / B D: mycohaemia + +# myelinization (level 80) +A Z: myelinization / B: myelinisation +A Z: myelinizations / B: myelinisations +A Z: myelinization's / B: myelinisation's + +# myelocele (level 95) +A: myelocele / B: myelocoele + +# myelocythemia (level 95) +A Dv: myelocythemia / B D: myelocythaemia + +# mylonitization (level 80) +A Z: mylonitization / B: mylonitisation +A Z: mylonitizations / B: mylonitisations + +# mylonitize (level 80) +A Z: mylonitize / B: mylonitise +A Z: mylonitized / B: mylonitised +A Z: mylonitizing / B: mylonitising +A Z: mylonitizes / B: mylonitises + +# myna (level 50) +A Bv C: myna / Av B Cv: mynah +A Bv C: mynas / Av B Cv: mynahes +A Bv C: myna's / Av B Cv: mynah's + +# myocele (level 95) +A: myocele / B: myocoele + +# myohematin (level 95) +A Dv: myohematin / B D: myohaematin + +# myrialiter (level 95) +A: myrialiter / B: myrialitre + +# myriameter (level 70) +A: myriameter / B: myriametre + +# mysticize (level 95) +A Z: mysticize / B: mysticise +A Z: mysticizes / B: mysticises + +# mythicization (level 80) +A Z: mythicization / B: mythicisation + +# mythicize (level 70) +A Z: mythicize / B: mythicise +A Z: mythicized / B: mythicised +A Z: mythicizing / B: mythicising +A Z: mythicizes / B: mythicises + +# mythicizer (level 80) +A Z: mythicizer / B: mythiciser +A Z: mythicizers / B: mythicisers +A Z: mythicizer's / B: mythiciser's + +# mythize (level 80) +A Z: mythize / B: mythise +A Z: mythized / B: mythised +A Z: mythizing / B: mythising +A Z: mythizes / B: mythises + +# mythologization (level 80) +A Z: mythologization / B: mythologisation +A Z: mythologizations / B: mythologisations +A Z: mythologization's / B: mythologisation's + +# mythologize (level 60) +A Z: mythologize / B: mythologise +A Z: mythologized / B: mythologised +A Z: mythologizing / B: mythologising +A Z: mythologizes / B: mythologises + +# mythologizer (level 80) +A Z: mythologizer / B: mythologiser +A Z: mythologizers / B: mythologisers +A Z: mythologizer's / B: mythologiser's + +# mythopeic (level 70) +A: mythopeic / B: mythopoeic + +# mythopeist (level 80) +A: mythopeist / B: mythopoeist + +# mythopoetize (level 95) +A Z: mythopoetize / B: mythopoetise + +# mythopoetized (level 95) +A Z: mythopoetized / B: mythopoetised + +# mythopoetizing (level 95) +A Z: mythopoetizing / B: mythopoetising + +# myxameba (level 80) +A: myxameba / B: myxamoeba + +# myxedema (level 70) +A C Dv: myxedema / B D: myxoedema +A C Dv: myxedemas / B D: myxoedemas +A C Dv: myxedema's / B D: myxoedema's + +# myxedematous (level 80) +A Dv: myxedematous / B D: myxoedematous + +# myxedemic (level 80) +A Dv: myxedemic / B D: myxoedemic + +# myxemia (level 95) +A Dv: myxemia / B D: myxaemia + +# naan (level 55) +_: naan / _V: nan +_: naans / _V: nans +_: naan's / _V: nan's + +# Nabateans (level 80) +A: Nabateans / B: Nabataeans + +# Nabathean (level 80) +A: Nabathean / B: Nabathaean +A: Nabathean's / B: Nabathaean's + +# nakedize (level 95) +A Z: nakedize / B: nakedise +A Z: nakedizes / B: nakedises + +# nanization (level 80) +A Z: nanization / B: nanisation +A Z: nanizations / B: nanisations + +# nanogram (level 80) +A C: nanogram / B: nanogramme +A C: nanograms / B: nanogrammes + +# nanometer (level 70) +A Cv: nanometer / B C: nanometre +A Cv: nanometers / B C: nanometres +A Cv: nanometer's / B C: nanometre's + +# napea (level 95) +A: napea / B: napaea + +# naphthalize (level 80) +A Z: naphthalize / B: naphthalise +A Z: naphthalized / B: naphthalised +A Z: naphthalizing / B: naphthalising +A Z: naphthalizes / B: naphthalises + +# Napoleonize (level 95) +A Z: Napoleonize / B: Napoleonise +A Z: Napoleonizes / B: Napoleonises +A Z: Napoleonize's / B: Napoleonise's + +# narc (level 40) +_: narc / _V: nark | :1 +_: narcs / _V: narks | :1 +_: narc's / _V: nark's | :1 +_: nark | :2 + +# narcotization (level 60) +A Z: narcotization / B: narcotisation +A Z: narcotizations / B: narcotisations +A Z: narcotization's / B: narcotisation's + +# narcotize (level 60) +A Z: narcotize / B: narcotise +A Z: narcotized / B: narcotised +A Z: narcotizing / B: narcotising +A Z: narcotizes / B: narcotises + +# nasalization (level 60) +A Z: nasalization / B: nasalisation +A Z: nasalizations / B: nasalisations +A Z: nasalization's / B: nasalisation's + +# nasalize (level 50) +A Z: nasalize / B: nasalise +A Z: nasalized / B: nasalised +A Z: nasalizing / B: nasalising +A Z: nasalizes / B: nasalises + +# nationalization (level 40) +A Z: nationalization / B: nationalisation +A Z: nationalizations / B: nationalisations +A Z: nationalization's / B: nationalisation's + +# nationalize (level 35) +A Z: nationalize / B: nationalise +A Z: nationalized / B: nationalised +A Z: nationalizing / B: nationalising +A Z: nationalizes / B: nationalises + +# nationalizer (level 70) +A Z: nationalizer / B: nationaliser +A Z: nationalizers / B: nationalisers +A Z: nationalizer's / B: nationaliser's + +# naturalization (level 35) +A Z: naturalization / B: naturalisation +A Z: naturalizations / B: naturalisations +A Z: naturalization's / B: naturalisation's + +# naturalize (level 35) +A Z: naturalize / B: naturalise +A Z: naturalized / B: naturalised +A Z: naturalizing / B: naturalising +A Z: naturalizes / B: naturalises + +# naturalizer (level 80) +A Z: naturalizer / B: naturaliser +A Z: naturalizers / B: naturalisers +A Z: naturalizer's / B: naturaliser's + +# naturize (level 95) +A Z: naturize / B: naturise +A Z: naturizes / B: naturises + +# naught (level 35) +A: naught / Av B: nought | digit zero +A: naughts / Av B: noughts | digit zero +A: naught's / Av B: nought's | digit zero +A C: naught / Av B: nought | worthless +A B: naught | (-) nothing +A B: naughts | (-) nothing +A B: naught's | (-) nothing + +# nebularization (level 95) +A Z: nebularization / B: nebularisation +A Z: nebularizations / B: nebularisations +A Z: nebularization's / B: nebularisation's + +# nebularize (level 95) +A Z: nebularize / B: nebularise +A Z: nebularizes / B: nebularises + +# nebulization (level 70) +A Z: nebulization / B: nebulisation +A Z: nebulizations / B: nebulisations +A Z: nebulization's / B: nebulisation's + +# nebulize (level 70) +A Z: nebulize / B: nebulise +A Z: nebulized / B: nebulised +A Z: nebulizing / B: nebulising +A Z: nebulizes / B: nebulises + +# nebulizer (level 70) +A Z: nebulizer / B: nebuliser +A Z: nebulizers / B: nebulisers +A Z: nebulizer's / B: nebuliser's + +# necremia (level 95) +A Dv: necremia / B D: necraemia + +# necrotize (level 80) +A Z: necrotize / B: necrotise +A Z: necrotized / B: necrotised +A Z: necrotizing / B: necrotising +A Z: necrotizes / B: necrotises + +# nectarize (level 95) +A Z: nectarize / B: nectarise +A Z: nectarized / B: nectarised +A Z: nectarizing / B: nectarising +A Z: nectarizes / B: nectarises + +# neebor (level 95) +A: neebor / B: neebour + +# neencephalon (level 95) +A: neencephalon / B: neoencephalon + +# neer (level 95) +A: neer / B: nere + +# negligee (level 35) +A B: negligee / AV: neglig +A B: negligees / AV: negligs +A B: negligee's / AV: neglig's + +# Negritize (level 95) +A Z: Negritize / B: Negritise +A Z: Negritize's / B: Negritise's + +# Negritized (level 95) +A Z: Negritized / B: Negritised +A Z: Negritized's / B: Negritised's + +# Negritizing (level 95) +A Z: Negritizing / B: Negritising +A Z: Negritizing's / B: Negritising's + +# Negroization (level 95) +A Z: Negroization / B: Negroisation +A Z: Negroizations / B: Negroisations +A Z: Negroization's / B: Negroisation's + +# Negroize (level 95) +A Z: Negroize / B: Negroise +A Z: Negroized / B: Negroised +A Z: Negroized's / B: Negroised's +A Z: Negroizing / B: Negroising +A Z: Negroizes / B: Negroises +A Z: Negroize's / B: Negroise's +A Z: Negroizing's / B: Negroising's + +# neighbor (level 20) +A Cv DV: neighbor / B C D: neighbour +A Cv DV: neighbored / B C D: neighboured +A Cv DV: neighboring / B C D: neighbouring +A Cv DV: neighbor's / B C D: neighbour's +A Cv DV: neighborings / B C D: neighbourings +A Cv DV: neighbors / B C D: neighbours + +# neighborer (level 95) +A DV: neighborer / B D: neighbourer +A DV: neighborers / B D: neighbourers +A DV: neighborer's / B D: neighbourer's + +# neighboress (level 95) +A DV: neighboress / B D: neighbouress + +# neighborhood (level 20) +A Cv DV: neighborhood / B C D: neighbourhood +A Cv DV: neighborhoods / B C D: neighbourhoods +A Cv DV: neighborhood's / B C D: neighbourhood's + +# neighborless (level 80) +A DV: neighborless / B D: neighbourless +A Dv: neighborlesser / B D: neighbourlesser +A DV: neighborlessest / B D: neighbourlessest + +# neighborlesses (level 99) +A DV: neighborlesses / B D: neighbourlesses + +# neighborlike (level 95) +A DV: neighborlike / B D: neighbourlike +A DV: neighborlikes / B D: neighbourlikes +A DV: neighborlike's / B D: neighbourlike's + +# neighborliness (level 35) +A DV: neighborliness / B D: neighbourliness +A DV: neighborlinesses / B D: neighbourlinesses +A DV: neighborliness's / B D: neighbourliness's + +# neighborly (level 35) +A Cv DV: neighborly / B C D: neighbourly +A Cv DV: neighborlier / B C D: neighbourlier +A Cv DV: neighborliest / B C D: neighbourliest + +# neighborship (level 95) +A DV: neighborship / B D: neighbourship +A DV: neighborships / B D: neighbourships +A DV: neighborship's / B D: neighbourship's + +# Neogea (level 70) +A: Neogea / B: Neogaea +A: Neogea's / B: Neogaea's + +# Neogeal (level 95) +A: Neogeal / B: Neogaeal +A: Neogeal's / B: Neogaeal's + +# Neogean (level 80) +A: Neogean / B: Neogaean + +# Neogeic (level 95) +A: Neogeic / B: Neogaeic +A: Neogeic's / B: Neogaeic's + +# neologization (level 95) +A Z: neologization / B: neologisation + +# neologize (level 70) +A Z: neologize / B: neologise +A Z: neologized / B: neologised +A Z: neologizing / B: neologising +A Z: neologizes / B: neologises + +# neopaganize (level 80) +A Z: neopaganize / B: neopaganise +A Z: neopaganized / B: neopaganised +A Z: neopaganizing / B: neopaganising +A Z: neopaganizes / B: neopaganises + +# neoterize (level 70) +A Z: neoterize / B: neoterise +A Z: neoterized / B: neoterised +A Z: neoterizing / B: neoterising +A Z: neoterizes / B: neoterises + +# nephrectomize (level 80) +A Z: nephrectomize / B: nephrectomise +A Z: nephrectomized / B: nephrectomised +A Z: nephrectomizing / B: nephrectomising + +# nephrocele (level 95) +A: nephrocele / B: nephrocoele + +# nephrotomize (level 95) +A Z: nephrotomize / B: nephrotomise + +# nesslerize (level 95) +A Z: nesslerize / B: nesslerise + +# nesslerized (level 95) +A Z: nesslerized / B: nesslerised + +# nesslerizing (level 95) +A Z: nesslerizing / B: nesslerising + +# net (level 10) +A B C: net / Bv: nett +A B C: nets / Bv: netts +A B C: net's / Bv: nett's + +# neurepithelium (level 95) +A: neurepithelium / B: neuroepithelium + +# neurocele (level 70) +A: neurocele / B: neurocoele + +# neurocelian (level 95) +A: neurocelian / B: neurocoelian + +# neuronal (level 60) +_: neuronal / _V: neuronic + +# neuroticize (level 95) +A Z: neuroticize / B: neuroticise +A Z: neuroticizes / B: neuroticises + +# neutralization (level 40) +A Z: neutralization / B: neutralisation +A Z: neutralizations / B: neutralisations +A Z: neutralization's / B: neutralisation's + +# neutralize (level 35) +A Z: neutralize / B: neutralise +A Z: neutralized / B: neutralised +A Z: neutralizing / B: neutralising +A Z: neutralizes / B: neutralises + +# neutralizer (level 50) +A Z: neutralizer / B: neutraliser +A Z: neutralizers / B: neutralisers +A Z: neutralizer's / B: neutraliser's + +# neves (level 80) +A: neves / B: naeves + +# nevoid (level 80) +A: nevoid / B: naevoid + +# Newmanize (level 95) +A Z: Newmanize / B: Newmanise +A Z: Newmanized / B: Newmanised +A Z: Newmanized's / B: Newmanised's +A Z: Newmanizing / B: Newmanising +A Z: Newmanizes / B: Newmanises +A Z: Newmanize's / B: Newmanise's +A Z: Newmanizing's / B: Newmanising's + +# newspaperized (level 95) +A Z: newspaperized / B: newspaperised +A Z: newspaperizeds / B: newspaperiseds +A Z: newspaperized's / B: newspaperised's + +# nickel (level 80) +A: nickeled / B: nickelled +A: nickeling / B: nickelling + +# nickelization (level 95) +A Z: nickelization / B: nickelisation +A Z: nickelizations / B: nickelisations +A Z: nickelization's / B: nickelisation's + +# nickelize (level 80) +A Z: nickelize / B: nickelise +A Z: nickelized / B: nickelised +A Z: nickelizing / B: nickelising +A Z: nickelizes / B: nickelises + +# nicotinize (level 95) +A Z: nicotinize / B: nicotinise +A Z: nicotinized / B: nicotinised +A Z: nicotinizing / B: nicotinising +A Z: nicotinizes / B: nicotinises + +# nielled (level 80) +A: nielled / B: nielloed + +# niger (level 95) +A: niger / B: nigre + +# niggardize (level 80) +A Z: niggardize / B: niggardise +A Z: niggardized / B: niggardised +A Z: niggardizing / B: niggardising +A Z: niggardizes / B: niggardises + +# night (level 10) +A B: night / Av: nite +A B: nights / Av: nites +A B: night's / Av: nite's +## Ox labels nite as an informal spelling + +# nightie (level 40) +_: nightie / _v: nighty +_: nightie's / _v: nighty's + +# nightingalize (level 95) +A Z: nightingalize / B: nightingalise +A Z: nightingalizes / B: nightingalises + +# Nipponize (level 95) +A Z: Nipponize / B: Nipponise +A Z: Nipponizes / B: Nipponises +A Z: Nipponize's / B: Nipponise's + +# niter (level 50) +A: niter / B: nitre +A: niters / B: nitres +A: niter's / B: nitre's + +# nitridization (level 95) +A Z: nitridization / B: nitridisation +A Z: nitridizations / B: nitridisations +A Z: nitridization's / B: nitridisation's + +# nitridize (level 95) +A Z: nitridize / B: nitridise +A Z: nitridizes / B: nitridises + +# nitrogenization (level 80) +A Z: nitrogenization / B: nitrogenisation +A Z: nitrogenizations / B: nitrogenisations +A Z: nitrogenization's / B: nitrogenisation's + +# nitrogenize (level 70) +A Z: nitrogenize / B: nitrogenise +A Z: nitrogenized / B: nitrogenised +A Z: nitrogenizing / B: nitrogenising +A Z: nitrogenizes / B: nitrogenises + +# nitroglycerin (level 50) +A Cv: nitroglycerin / Av B C: nitroglycerine +A Cv: nitroglycerins / Av B C: nitroglycerines +A Cv: nitroglycerin's / Av B C: nitroglycerine's + +# nodalize (level 80) +A Z: nodalize / B: nodalise +A Z: nodalized / B: nodalised +A Z: nodalizing / B: nodalising +A Z: nodalizes / B: nodalises + +# nodulize (level 95) +A Z: nodulize / B: nodulise +A Z: nodulizes / B: nodulises + +# Noemon (level 95) +A: Noemon / B: Noaemon +A: Noemon's / B: Noaemon's + +# nomadization (level 80) +A Z: nomadization / B: nomadisation +A Z: nomadizations / B: nomadisations +A Z: nomadization's / B: nomadisation's + +# nomadize (level 70) +A Z: nomadize / B: nomadise +A Z: nomadized / B: nomadised +A Z: nomadizing / B: nomadising +A Z: nomadizes / B: nomadises + +# nominalization (level 80) +A Z: nominalization / B: nominalisation +A Z: nominalizations / B: nominalisations + +# nominalize (level 80) +A Z: nominalize / B: nominalise +A Z: nominalized / B: nominalised +A Z: nominalizing / B: nominalising +A Z: nominalizes / B: nominalises + +# nonacknowledgment (level 95) +A: nonacknowledgment / B: nonacknowledgement +A: nonacknowledgments / B: nonacknowledgements +A: nonacknowledgment's / B: nonacknowledgement's + +# nonanemic (level 95) +A Dv: nonanemic / B D: nonanaemic + +# nonanesthetized (level 95) +A: nonanesthetized / B: nonanaesthetised / Z: nonanaesthetized + +# nonapostatizing (level 95) +A Z: nonapostatizing / B: nonapostatising +A Z: nonapostatizings / B: nonapostatisings +A Z: nonapostatizing's / B: nonapostatising's + +# noncanonization (level 95) +A Z: noncanonization / B: noncanonisation +A Z: noncanonizations / B: noncanonisations +A Z: noncanonization's / B: noncanonisation's + +# noncartelized (level 95) +A Z: noncartelized / B: noncartelised +A Z: noncartelizeds / B: noncarteliseds +A Z: noncartelized's / B: noncartelised's + +# noncatechizable (level 95) +A Z: noncatechizable / B: noncatechisable +A Z: noncatechizables / B: noncatechisables +A Z: noncatechizable's / B: noncatechisable's + +# noncivilized (level 80) +A Z: noncivilized / B: noncivilised +A Z: noncivilizeds / B: nonciviliseds +A Z: noncivilized's / B: noncivilised's + +# noncolor (level 80) +A DV: noncolor / B D: noncolour +A DV: noncolored / B D: noncoloured +A DV: noncoloring / B D: noncolouring +A DV: noncolor's / B D: noncolour's +A DV: noncolorings / B D: noncolourings +A DV: noncolors / B D: noncolours + +# noncolorability (level 95) +A DV: noncolorability / B D: noncolourability +A DV: noncolorabilities / B D: noncolourabilities +A DV: noncolorability's / B D: noncolourability's + +# noncolorable (level 95) +A DV: noncolorable / B D: noncolourable +A DV: noncolorables / B D: noncolourables +A DV: noncolorable's / B D: noncolourable's + +# noncolorableness (level 95) +A DV: noncolorableness / B D: noncolourableness +A DV: noncolorableness's / B D: noncolourableness's + +# noncolorably (level 95) +A DV: noncolorably / B D: noncolourably +A DV: noncolorablies / B D: noncolourablies + +# noncolorer (level 99) +A DV: noncolorer / B D: noncolourer +A DV: noncolorers / B D: noncolourers + +# noncolorfast (level 80) +A DV: noncolorfast / B D: noncolourfast + +# noncrystallizable (level 95) +A Z: noncrystallizable / B: noncrystallisable +A Z: noncrystallizables / B: noncrystallisables +A Z: noncrystallizable's / B: noncrystallisable's + +# noncrystallized (level 95) +A Z: noncrystallized / B: noncrystallised +A Z: noncrystallizeds / B: noncrystalliseds +A Z: noncrystallized's / B: noncrystallised's + +# noncrystallizing (level 95) +A Z: noncrystallizing / B: noncrystallising +A Z: noncrystallizings / B: noncrystallisings +A Z: noncrystallizing's / B: noncrystallising's + +# nondemobilization (level 95) +A Z: nondemobilization / B: nondemobilisation +A Z: nondemobilizations / B: nondemobilisations +A Z: nondemobilization's / B: nondemobilisation's + +# nondialyzing (level 95) +A: nondialyzing / B: nondialysing +A: nondialyzings / B: nondialysings +A: nondialyzing's / B: nondialysing's + +# nondimensionalize (level 99) +A Z: nondimensionalize / B: nondimensionalise + +# nondimensionalized (level 99) +A Z: nondimensionalized / B: nondimensionalised + +# nonecumenic (level 95) +A: nonecumenic / B: nonoecumenic + +# nonecumenical (level 95) +A: nonecumenical / B: nonoecumenical + +# nonencyclopedic (level 95) +A B C D: nonencyclopedic / AV B. CV Dv: nonencyclopaedic +## See note for encyclopedia + +# nonesthetic (level 80) +A: nonesthetic / B: nonaesthetic + +# nonesthetical (level 95) +A: nonesthetical / B: nonaesthetical + +# nonesthetically (level 95) +A: nonesthetically / B: nonaesthetically + +# nonfavorite (level 95) +A DV: nonfavorite / B D: nonfavourite +A DV: nonfavorites / B D: nonfavourites +A DV: nonfavorite's / B D: nonfavourite's + +# nonflavored (level 95) +A DV: nonflavored / B D: nonflavoured + +# nonfulfillment (level 70) +A: nonfulfillment / B: nonfulfilment +A: nonfulfillments / B: nonfulfilments +A: nonfulfillment's / B: nonfulfilment's + +# nongalvanized (level 95) +A Z: nongalvanized / B: nongalvanised +A Z: nongalvanizeds / B: nongalvaniseds +A Z: nongalvanized's / B: nongalvanised's + +# nongelatinizing (level 95) +A Z: nongelatinizing / B: nongelatinising +A Z: nongelatinizings / B: nongelatinisings +A Z: nongelatinizing's / B: nongelatinising's + +# nonhydrolyzable (level 95) +A: nonhydrolyzable / B: nonhydrolysable +A: nonhydrolyzables / B: nonhydrolysables +A: nonhydrolyzable's / B: nonhydrolysable's + +# nonimmunized (level 80) +A Z: nonimmunized / B: nonimmunised +A Z: nonimmunizeds / B: nonimmuniseds +A Z: nonimmunized's / B: nonimmunised's + +# nonionized (level 80) +A Z: nonionized / B: nonionised +A Z: nonionizeds / B: nonioniseds +A Z: nonionized's / B: nonionised's + +# nonionizing (level 70) +A Z: nonionizing / B: nonionising +A Z: nonionizings / B: nonionisings +A Z: nonionizing's / B: nonionising's + +# nonlocalized (level 95) +A Z: nonlocalized / B: nonlocalised +A Z: nonlocalizeds / B: nonlocaliseds +A Z: nonlocalized's / B: nonlocalised's + +# nonmagnetizable (level 95) +A Z: nonmagnetizable / B: nonmagnetisable +A Z: nonmagnetizables / B: nonmagnetisables +A Z: nonmagnetizable's / B: nonmagnetisable's + +# nonnitrogenized (level 95) +A Z: nonnitrogenized / B: nonnitrogenised +A Z: nonnitrogenizeds / B: nonnitrogeniseds +A Z: nonnitrogenized's / B: nonnitrogenised's + +# nonorganization (level 95) +A Z: nonorganization / B: nonorganisation +A Z: nonorganizations / B: nonorganisations +A Z: nonorganization's / B: nonorganisation's + +# nonoxidizable (level 95) +A Z: nonoxidizable / B: nonoxidisable +A Z: nonoxidizables / B: nonoxidisables +A Z: nonoxidizable's / B: nonoxidisable's + +# nonoxidizing (level 80) +A Z: nonoxidizing / B: nonoxidising +A Z: nonoxidizings / B: nonoxidisings +A Z: nonoxidizing's / B: nonoxidising's + +# nonparlor (level 95) +A DV: nonparlor / B D: nonparlour +A DV: nonparlors / B D: nonparlours +A DV: nonparlor's / B D: nonparlour's + +# nonpenalized (level 95) +A Z: nonpenalized / B: nonpenalised +A Z: nonpenalizeds / B: nonpenaliseds +A Z: nonpenalized's / B: nonpenalised's + +# nonphosphorized (level 95) +A Z: nonphosphorized / B: nonphosphorised +A Z: nonphosphorizeds / B: nonphosphoriseds +A Z: nonphosphorized's / B: nonphosphorised's + +# nonpolarizable (level 80) +A Z: nonpolarizable / B: nonpolarisable +A Z: nonpolarizables / B: nonpolarisables +A Z: nonpolarizable's / B: nonpolarisable's + +# nonpolarized (level 99) +A Z: nonpolarized / B: nonpolarised + +# nonpolarizing (level 95) +A Z: nonpolarizing / B: nonpolarising +A Z: nonpolarizings / B: nonpolarisings +A Z: nonpolarizing's / B: nonpolarising's + +# nonrationalized (level 95) +A Z: nonrationalized / B: nonrationalised +A Z: nonrationalizeds / B: nonrationaliseds +A Z: nonrationalized's / B: nonrationalised's + +# nonrealization (level 95) +A Z: nonrealization / B: nonrealisation +A Z: nonrealizations / B: nonrealisations +A Z: nonrealization's / B: nonrealisation's + +# nonrecognized (level 95) +A Z: nonrecognized / B: nonrecognised +A Z: nonrecognizeds / B: nonrecogniseds +A Z: nonrecognized's / B: nonrecognised's + +# nonschematized (level 95) +A Z: nonschematized / B: nonschematised +A Z: nonschematizeds / B: nonschematiseds +A Z: nonschematized's / B: nonschematised's + +# nonsensitized (level 95) +A Z: nonsensitized / B: nonsensitised +A Z: nonsensitizeds / B: nonsensitiseds +A Z: nonsensitized's / B: nonsensitised's + +# nonspecialized (level 80) +A Z: nonspecialized / B: nonspecialised +A Z: nonspecializeds / B: nonspecialiseds +A Z: nonspecialized's / B: nonspecialised's + +# nonstandardized (level 80) +A Z: nonstandardized / B: nonstandardised +A Z: nonstandardizeds / B: nonstandardiseds +A Z: nonstandardized's / B: nonstandardised's + +# nonstylized (level 95) +A Z: nonstylized / B: nonstylised +A Z: nonstylizeds / B: nonstyliseds +A Z: nonstylized's / B: nonstylised's + +# nonsuccor (level 95) +A: nonsuccor / B: nonsuccour + +# nonsympathizer (level 60) +A Z: nonsympathizer / B: nonsympathiser +A Z: nonsympathizers / B: nonsympathisers +A Z: nonsympathizer's / B: nonsympathiser's + +# nonsynthesized (level 80) +A Z: nonsynthesized / B: nonsynthesised +A Z: nonsynthesizeds / B: nonsynthesiseds +A Z: nonsynthesized's / B: nonsynthesised's + +# nontemporizing (level 95) +A Z: nontemporizing / B: nontemporising +A Z: nontemporizings / B: nontemporisings +A Z: nontemporizing's / B: nontemporising's + +# nonutilized (level 95) +A Z: nonutilized / B: nonutilised +A Z: nonutilizeds / B: nonutiliseds +A Z: nonutilized's / B: nonutilised's + +# nonvisualized (level 95) +A Z: nonvisualized / B: nonvisualised +A Z: nonvisualizeds / B: nonvisualiseds +A Z: nonvisualized's / B: nonvisualised's + +# nonvolatilized (level 95) +A Z: nonvolatilized / B: nonvolatilised +A Z: nonvolatilizeds / B: nonvolatiliseds +A Z: nonvolatilized's / B: nonvolatilised's + +# nonvulcanizable (level 95) +A Z: nonvulcanizable / B: nonvulcanisable +A Z: nonvulcanizables / B: nonvulcanisables +A Z: nonvulcanizable's / B: nonvulcanisable's + +# norice (level 80) +A: norice / B: nourice + +# normalizable (level 70) +A Z: normalizable / B: normalisable + +# normalization (level 40) +A Z: normalization / B: normalisation +A Z: normalizations / B: normalisations +A Z: normalization's / B: normalisation's + +# normalize (level 40) +A Z: normalize / B: normalise +A Z: normalized / B: normalised +A Z: normalizing / B: normalising +A Z: normalizes / B: normalises + +# normalizer (level 70) +A Z: normalizer / B: normaliser +A Z: normalizers / B: normalisers +A Z: normalizer's / B: normaliser's + +# Normanization (level 80) +A Z: Normanization / B: Normanisation +A Z: Normanizations / B: Normanisations +A Z: Normanization's / B: Normanisation's + +# Normanize (level 80) +A Z: Normanize / B: Normanise +A Z: Normanized / B: Normanised +A Z: Normanizing / B: Normanising +A Z: Normanizes / B: Normanises +A Z: normanize / B: normanise +A Z: normanized / B: normanised +A Z: normanizing / B: normanising +A Z: normanizes / B: normanises + +# Normanizer (level 95) +A Z: Normanizer / B: Normaniser +A Z: Normanizers / B: Normanisers +A Z: Normanizer's / B: Normaniser's + +# Northernize (level 80) +A Z: Northernize / B: Northernise +A Z: Northernize's / B: Northernise's +A Z: northernize / B: northernise +A Z: northernized / B: northernised +A Z: northernizing / B: northernising +A Z: northernizes / B: northernises + +# nosize (level 99) +A Z: nosize / B: nosise + +# nosohemia (level 95) +A Dv: nosohemia / B D: nosohaemia + +# nosy (level 35) +A B: nosy / Bv: nosey +A B: nosies / Bv: noseys +A B: nosy's / Bv: nosey's + +# notarization (level 60) +A Z: notarization / B: notarisation +A Z: notarizations / B: notarisations + +# notarize (level 50) +A C Z: notarize / B Cv: notarise +A C Z: notarized / B Cv: notarised +A C Z: notarizing / B Cv: notarising +A C Z: notarizes / B Cv: notarises + +# noter (level 80) +A: noter / B: notre + +# nothingize (level 95) +A Z: nothingize / B: nothingise +A Z: nothingizes / B: nothingises + +# Notogea (level 70) +A: Notogea / B: Notogaea +A: Notogea's / B: Notogaea's + +# nounize (level 95) +A Z: nounize / B: nounise +A Z: nounizes / B: nounises + +# novelization (level 60) +A Z: novelization / B: novelisation +A Z: novelizations / B: novelisations +A Z: novelization's / B: novelisation's + +# novelize (level 60) +A Z: novelize / B: novelise +A Z: novelized / B: novelised +A Z: novelizing / B: novelising +A Z: novelizes / B: novelises + +# novelizer (level 80) +A Z: novelizer / B: noveliser +A Z: novelizers / B: novelisers +A Z: novelizer's / B: noveliser's + +# novene (level 60) +A: novene / B: novenae + +# nuclearization (level 80) +A Z: nuclearization / B: nuclearisation +A Z: nuclearizations / B: nuclearisations + +# nuclearize (level 80) +A Z: nuclearize / B: nuclearise +A Z: nuclearized / B: nuclearised +A Z: nuclearizing / B: nuclearising +A Z: nuclearizes / B: nuclearises + +# numskull (level 50) +A Bv: numskull / Av B: numbskull +A Bv: numskulls / Av B: numbskulls +A Bv: numskull's / Av B: numbskull's + +# nuptialize (level 95) +A Z: nuptialize / B: nuptialise +A Z: nuptializes / B: nuptialises + +# nympheum (level 70) +A: nympheum / B: nymphaeum + +# Obe (level 95) +A: Obe / B: Oboe +A: Obe's / B: Oboe's + +# obelize (level 70) +A Z: obelize / B: obelise +A Z: obelized / B: obelised +A Z: obelizing / B: obelising +A Z: obelizes / B: obelises + +# objectivize (level 70) +A Z: objectivize / B: objectivise +A Z: objectivized / B: objectivised +A Z: objectivizing / B: objectivising +A Z: objectivizes / B: objectivises + +# objectization (level 95) +A Z: objectization / B: objectisation +A Z: objectizations / B: objectisations +A Z: objectization's / B: objectisation's + +# objectize (level 95) +A Z: objectize / B: objectise +A Z: objectizes / B: objectises + +# oblivionize (level 95) +A Z: oblivionize / B: oblivionise +A Z: oblivionizes / B: oblivionises + +# Occidentalization (level 80) +A Z: Occidentalization / B: Occidentalisation +A Z: Occidentalizations / B: Occidentalisations +A Z: Occidentalization's / B: Occidentalisation's + +# Occidentalize (level 70) +A Z: Occidentalize / B: Occidentalise +A Z: Occidentalized / B: Occidentalised +A Z: Occidentalizing / B: Occidentalising +A Z: Occidentalizes / B: Occidentalises +A Z: occidentalize / B: occidentalise +A Z: occidentalized / B: occidentalised +A Z: occidentalizing / B: occidentalising +A Z: occidentalizes / B: occidentalises + +# ocher (level 50) +A: ocher / B: ochre +A: ochered / B: ochred +A: ochering / B: ochring +A: ocherrer / B: ochrer +A: ocherrest / B: ochrest +A: ochers / B: ochres +A: ocher's / B: ochre's + +# ocherish (level 95) +A: ocherish / B: ochreish + +# ocherous (level 70) +A: ocherous / Av B: ochreous +A: ocherouser / Av B: ochreouser +A: ocherousest / Av B: ochreousest + +# ochery (level 70) +A: ochery / B: ochrey + +# octet (level 50) +_: octet / _V: octette +_: octets / _V: octettes +_: octet's / _V: octette's + +# Ocyrrhoe (level 95) +A: Ocyrrhoe / B: Ocyrrhoae +A: Ocyrrhoe's / B: Ocyrrhoae's + +# odor (level 35) +A Cv DV: odor / B C D: odour +A Cv DV: odors / B C D: odours +A Cv DV: odor's / B C D: odour's + +# odored (level 60) +A Cv DV: odored / B C D: odoured + +# odorful (level 80) +A Cv DV: odorful / B C D: odourful +A Cv DV: odorfuller / B C D: odourfuller +A Cv DV: odorfullest / B C D: odourfullest + +# odorize (level 80) +A Z: odorize / B: odorise +A Z: odorized / B: odorised +A Z: odorizing / B: odorising +A Z: odorizes / B: odorises + +# odorizer (level 80) +A Z: odorizer / B: odoriser + +# odorless (level 50) +A Cv DV: odorless / B C D: odourless +A Cv DV: odorlesser / B C D: odourlesser +A Cv DV: odorlessest / B C D: odourlessest + +# odorlesses (level 99) +A Cv DV: odorlesses / B C D: odourlesses + +# offense (level 20) +A Cv: offense / B C: offence +A Cv: offenses / B C: offences +A Cv: offense's / B C: offence's + +# offenseless (level 70) +A: offenseless / B: offenceless +A: offenselesser / B: offencelesser +A: offenselessest / B: offencelessest + +# offenselesses (level 99) +A: offenselesses / B: offencelesses + +# offenselessly (level 95) +A: offenselessly / B: offencelessly + +# officialization (level 95) +A Z: officialization / B: officialisation +A Z: officializations / B: officialisations +A Z: officialization's / B: officialisation's + +# officialize (level 95) +A Z: officialize / B: officialise +A Z: officializes / B: officialises + +# OK (level 35) +A B C.: OK / A. B. C: okay | :1 +A B C.: OK's / A. B. C: okay's | :1 +A B C.: OKed / A. B. C: okayed | :1 +A B C.: OKing / A. B. C: okaying | :1 +A B C.: OKs / A. B. C: okays | :1 +A B: OK | Oklahoma +## OK is generally the preferred form, but it is very difficult to +## misspell one for the other and in some contexts okay is preferred, +## so I am marking these as equal variants. Note that the Canadian +## Ox. has okay as the primary form. + +# oleomargarine (level 50) +_: oleomargarine / _-: oleomargarin +_: oleomargarines / _-: oleomargarins +_: oleomargarine's / _-: oleomargarin's + +# oligemia (level 80) +A Dv: oligemia / B D: oligaemia + +# oligocythemia (level 95) +A Dv: oligocythemia / B D: oligocythaemia + +# olpe (level 80) +A: olpe / B: olpae + +# Olympianize (level 95) +A Z: Olympianize / B: Olympianise +A Z: Olympianizes / B: Olympianises +A Z: Olympianize's / B: Olympianise's + +# omber (level 70) +A: omber / B: ombre +A: ombers / B: ombres +A: omber's / B: ombre's + +# omelet (level 35) +A Cv: omelet / Av B C: omelette +A Cv: omelets / Av B C: omelettes +A Cv: omelet's / Av B C: omelette's + +# oneyer (level 80) +A: oneyer / B: oneyre +A: oneyers / B: oneyres + +# onionized (level 95) +A Z: onionized / B: onionised +A Z: onionizeds / B: onioniseds +A Z: onionized's / B: onionised's + +# ontologize (level 95) +A Z: ontologize / B: ontologise + +# onward (level 20) +_: onward | +_: onward / _V: onwards | + +# ooglea (level 95) +A: ooglea / B: oogloea + +# oophorectomize (level 95) +A Z: oophorectomize / B: oophorectomise +A Z: oophorectomized / B: oophorectomised +A Z: oophorectomizing / B: oophorectomising +A Z: oophorectomizes / B: oophorectomises + +# opaled (level 80) +A: opaled / B: opalled + +# opalize (level 80) +A Z: opalize / B: opalise +A Z: opalized / B: opalised +A Z: opalizes / B: opalises + +# operationalization (level 99) +A Z: operationalization / B: operationalisation +A Z: operationalizations / B: operationalisations + +# operationalize (level 99) +A Z: operationalize / B: operationalise + +# operationalized (level 99) +A Z: operationalized / B: operationalised + +# operatize (level 80) +A Z: operatize / B: operatise +A Z: operatized / B: operatised +A Z: operatizing / B: operatising +A Z: operatizes / B: operatises + +# opiniaster (level 95) +A: opiniaster / B: opiniastre + +# opiniater (level 95) +A: opiniater / B: opiniatre + +# optimalization (level 80) +A Z: optimalization / B: optimalisation +A Z: optimalizations / B: optimalisations + +# optimalize (level 80) +A Z: optimalize / B: optimalise +A Z: optimalized / B: optimalised +A Z: optimalizing / B: optimalising +A Z: optimalizes / B: optimalises + +# optimization (level 20) +A Z: optimization / B: optimisation +A Z: optimizations / B: optimisations +A Z: optimization's / B: optimisation's + +# optimize (level 20) +A Z: optimize / B: optimise +A Z: optimized / B: optimised +A Z: optimizing / B: optimising +A Z: optimizes / B: optimises + +# optimizer (level 50) +A Z: optimizer / B: optimiser +A Z: optimizers / B: optimisers +A Z: optimizer's / B: optimiser's + +# optionalize (level 95) +A Z: optionalize / B: optionalise +A Z: optionalizes / B: optionalises + +# oralization (level 95) +A Z: oralization / B: oralisation +A Z: oralizations / B: oralisations +A Z: oralization's / B: oralisation's + +# oralize (level 95) +A Z: oralize / B: oralise +A Z: oralizes / B: oralises + +# orang (level 70) +A B: orang / B-: ourang +A B: orangs / B-: ourangs + +# orangize (level 95) +A Z: orangize / B: orangise +A Z: orangizes / B: orangises + +# orangutan (level 35) +_: orangutan / _V: orangutang +_: orangutans / _V: orangutangs +_: orangutan's / _V: orangutang's + +# oratorize (level 95) +A Z: oratorize / B: oratorise +A Z: oratorizes / B: oratorises + +# orchester (level 95) +A: orchester / B: orchestre + +# organdy (level 50) +A C: organdy / AV B: organdie +A C: organdy's / AV B: organdie's + +# organizability (level 80) +A Z: organizability / B: organisability +A Z: organizabilities / B: organisabilities +A Z: organizability's / B: organisability's + +# organizable (level 70) +A Z: organizable / B: organisable +A Z: organizabler / B: organisabler +A Z: organizables / B: organisables +A Z: organizablest / B: organisablest +A Z: organizable's / B: organisable's + +# organization (level 10) +A Z: organization / B: organisation +A Z: organizations / B: organisations +A Z: organization's / B: organisation's + +# organizational (level 35) +A Z: organizational / B: organisational +A Z: organizationaler / B: organisationaler +A Z: organizationalest / B: organisationalest +A Z: organizationals / B: organisationals +A Z: organizational's / B: organisational's + +# organizationally (level 60) +A Z: organizationally / B: organisationally +A Z: organizationallier / B: organisationallier +A Z: organizationalliest / B: organisationalliest + +# organizationist (level 95) +A Z: organizationist / B: organisationist +A Z: organizationists / B: organisationists +A Z: organizationist's / B: organisationist's + +# organize (level 10) +A Z: organize / B: organise +A Z: organized / B: organised +A Z: organizing / B: organising +A Z: organizes / B: organises + +# organizer (level 20) +A Z: organizer / B: organiser +A Z: organizers / B: organisers +A Z: organizer's / B: organiser's + +# orientalization (level 95) +A Z: orientalization / B: orientalisation +A Z: orientalizations / B: orientalisations +A Z: orientalization's / B: orientalisation's + +# Orientalize (level 70) +A Z: Orientalize / B: Orientalise +A Z: Orientalized / B: Orientalised +A Z: Orientalizing / B: Orientalising +A Z: orientalize / B: orientalise +A Z: orientalized / B: orientalised +A Z: orientalizing / B: orientalising +A Z: orientalizes / B: orientalises + +# orientization (level 95) +A Z: orientization / B: orientisation +A Z: orientizations / B: orientisations +A Z: orientization's / B: orientisation's + +# orientize (level 95) +A Z: orientize / B: orientise +A Z: orientizes / B: orientises + +# ornamentalize (level 95) +A Z: ornamentalize / B: ornamentalise +A Z: ornamentalizes / B: ornamentalises + +# orology (level 80) +A: orology / B: ourology +A: orologies / B: ourologies + +# orphanize (level 95) +A Z: orphanize / B: orphanise +A Z: orphanizes / B: orphanises + +# orsel (level 95) +A: orsel / B: oursel + +# orthocenter (level 80) +A: orthocenter / B: orthocentre +A: orthocenters / B: orthocentres +A: orthocenter's / B: orthocentre's + +# orthogonalization (level 80) +A Z: orthogonalization / B: orthogonalisation +A Z: orthogonalization's / B: orthogonalisation's + +# orthogonalize (level 80) +A Z: orthogonalize / B: orthogonalise +A Z: orthogonalized / B: orthogonalised +A Z: orthogonalizing / B: orthogonalising +A Z: orthogonalizes / B: orthogonalises + +# orthographize (level 70) +A Z: orthographize / B: orthographise + +# orthographized (level 95) +A Z: orthographized / B: orthographised + +# orthographizing (level 95) +A Z: orthographizing / B: orthographising + +# orthopedia (level 80) +A Dv: orthopedia / B D: orthopaedia + +# orthopedic (level 35) +A Cv Dv: orthopedic / B C D: orthopaedic +A Cv Dv: orthopedicer / B C D: orthopaedicer +A Cv Dv: orthopedicest / B C D: orthopaedicest +A Cv Dv: orthopedics / B C D: orthopaedics +A Cv Dv: orthopedic's / B C D: orthopaedic's +A Cv Dv: orthopedics's / B C D: orthopaedics's + +# orthopedical (level 80) +A Dv: orthopedical / B D: orthopaedical + +# orthopedically (level 70) +A Dv: orthopedically / B D: orthopaedically +A Dv: orthopedicallier / B D: orthopaedicallier +A Dv: orthopedicalliest / B D: orthopaedicalliest + +# orthopedist (level 50) +A Dv: orthopedist / B D: orthopaedist +A Dv: orthopedists / B D: orthopaedists +A Dv: orthopedist's / B D: orthopaedist's + +# orthopedy (level 80) +A Dv: orthopedy / B D: orthopaedy +A Dv: orthopedies / B D: orthopaedies + +# orthopnea (level 80) +A: orthopnea / B: orthopnoea + +# orthopneic (level 95) +A: orthopneic / B: orthopnoeic + +# osteopedion (level 95) +A: osteopedion / B: osteopaedion + +# ostracizable (level 95) +A Z: ostracizable / B: ostracisable +A Z: ostracizables / B: ostracisables +A Z: ostracizable's / B: ostracisable's + +# ostracization (level 95) +A Z: ostracization / B: ostracisation +A Z: ostracizations / B: ostracisations +A Z: ostracization's / B: ostracisation's + +# ostracize (level 35) +A Z: ostracize / B: ostracise +A Z: ostracized / B: ostracised +A Z: ostracizing / B: ostracising +A Z: ostracizes / B: ostracises + +# ostracizer (level 95) +A Z: ostracizer / B: ostraciser +A Z: ostracizers / B: ostracisers +A Z: ostracizer's / B: ostraciser's + +# othematoma (level 95) +A Dv: othematoma / B D: othaematoma + +# otorrhea (level 80) +A Dv: otorrhea / B D: otorrhoea + +# Ottomanization (level 95) +A Z: Ottomanization / B: Ottomanisation +A Z: Ottomanizations / B: Ottomanisations +A Z: Ottomanization's / B: Ottomanisation's + +# Ottomanize (level 95) +A Z: Ottomanize / B: Ottomanise +A Z: Ottomanizes / B: Ottomanises +A Z: Ottomanize's / B: Ottomanise's + +# outcavil (level 80) +A: outcaviled / B: outcavilled +A: outcaviling / B: outcavilling + +# outclamor (level 95) +A DV: outclamor / B D: outclamour +A DV: outclamors / B D: outclamours +A DV: outclamor's / B D: outclamour's + +# outerness (level 95) +A: outerness / B: outreness + +# outhumor (level 80) +A DV: outhumor / B D: outhumour +A DV: outhumored / B D: outhumoured +A DV: outhumoring / B D: outhumouring +A DV: outhumors / B D: outhumours +A DV: outhumor's / B D: outhumour's + +# outhyperbolize (level 95) +A Z: outhyperbolize / B: outhyperbolise +A Z: outhyperbolizes / B: outhyperbolises + +# outlabor (level 95) +A DV: outlabor / B D: outlabour +A DV: outlabors / B D: outlabours +A DV: outlabor's / B D: outlabour's + +# outluster (level 95) +A: outluster / B: outlustre + +# outmaneuver (level 40) +A Cv: outmaneuver / B C: outmanoeuvre +A Cv: outmaneuvered / B C: outmanoeuvred +A Cv: outmaneuvering / B C: outmanoeuvring +A Cv: outmaneuvers / B C: outmanoeuvres + +# outrival (level 80) +A: outrivaled / B: outrivalled +A: outrivaling / B: outrivalling + +# outsavor (level 80) +A DV: outsavor / B D: outsavour +A DV: outsavoring / B D: outsavouring +A DV: outsavors / B D: outsavours +A DV: outsavor's / B D: outsavour's + +# outsize (level 50) +_: outsize / _V: outsized | + +# outsplendor (level 95) +A DV: outsplendor / B D: outsplendour +A DV: outsplendors / B D: outsplendours +A DV: outsplendor's / B D: outsplendour's + +# outtyrannize (level 95) +A Z: outtyrannize / B: outtyrannise +A Z: outtyrannizes / B: outtyrannises + +# ovalization (level 95) +A Z: ovalization / B: ovalisation +A Z: ovalizations / B: ovalisations +A Z: ovalization's / B: ovalisation's + +# ovalize (level 95) +A Z: ovalize / B: ovalise +A Z: ovalizes / B: ovalises + +# ovariectomized (level 80) +A Z: ovariectomized / B: ovariectomised + +# overagonize (level 95) +A Z: overagonize / B: overagonise +A Z: overagonizes / B: overagonises + +# overanalyze (level 70) +A C: overanalyze / B: overanalyse +A C: overanalyzes / B: overanalyses + +# overbrutalize (level 95) +A Z: overbrutalize / B: overbrutalise +A Z: overbrutalizes / B: overbrutalises + +# overcapitalization (level 80) +A Z: overcapitalization / B: overcapitalisation +A Z: overcapitalizations / B: overcapitalisations +A Z: overcapitalization's / B: overcapitalisation's + +# overcapitalize (level 60) +A Z: overcapitalize / B: overcapitalise +A Z: overcapitalized / B: overcapitalised +A Z: overcapitalizing / B: overcapitalising +A Z: overcapitalizes / B: overcapitalises + +# overcentralization (level 80) +A Z: overcentralization / B: overcentralisation +A Z: overcentralizations / B: overcentralisations +A Z: overcentralization's / B: overcentralisation's + +# overcentralize (level 80) +A Z: overcentralize / B: overcentralise +A Z: overcentralizes / B: overcentralises + +# overcivilization (level 95) +A Z: overcivilization / B: overcivilisation +A Z: overcivilizations / B: overcivilisations +A Z: overcivilization's / B: overcivilisation's + +# overcivilize (level 95) +A Z: overcivilize / B: overcivilise +A Z: overcivilizes / B: overcivilises + +# overclamor (level 95) +A DV: overclamor / B D: overclamour +A DV: overclamors / B D: overclamours +A DV: overclamor's / B D: overclamour's + +# overcolor (level 80) +A DV: overcolor / B D: overcolour +A DV: overcolor's / B D: overcolour's +A DV: overcoloring / B D: overcolouring +A DV: overcolors / B D: overcolours + +# overcoloration (level 95) +A: overcoloration / B: overcolouration +A: overcoloration's / B: overcolouration's + +# overcriticize (level 95) +A Z: overcriticize / B: overcriticise +A Z: overcriticizes / B: overcriticises + +# overdoctrinize (level 95) +A Z: overdoctrinize / B: overdoctrinise +A Z: overdoctrinizes / B: overdoctrinises + +# overdramatize (level 70) +A Z: overdramatize / B: overdramatise +A Z: overdramatized / B: overdramatised +A Z: overdramatizing / B: overdramatising +A Z: overdramatizes / B: overdramatises + +# overemotionalize (level 95) +A Z: overemotionalize / B: overemotionalise +A Z: overemotionalizes / B: overemotionalises + +# overemphasize (level 50) +A Z: overemphasize / B: overemphasise +A Z: overemphasized / B: overemphasised +A Z: overemphasizing / B: overemphasising +A Z: overemphasizes / B: overemphasises + +# overemphasizer (level 99) +A Z: overemphasizer / B: overemphasiser +A Z: overemphasizers / B: overemphasisers + +# overfavor (level 80) +A DV: overfavor / B D: overfavour +A DV: overfavors / B D: overfavours +A DV: overfavor's / B D: overfavour's + +# overfavorable (level 95) +A DV: overfavorable / B D: overfavourable +A DV: overfavorables / B D: overfavourables +A DV: overfavorable's / B D: overfavourable's + +# overfavorably (level 95) +A DV: overfavorably / B D: overfavourably +A DV: overfavorablies / B D: overfavourablies + +# overfertilization (level 80) +A Z: overfertilization / B: overfertilisation + +# overgeneralize (level 60) +A Z: overgeneralize / B: overgeneralise +A Z: overgeneralized / B: overgeneralised +A Z: overgeneralizing / B: overgeneralising +A Z: overgeneralizes / B: overgeneralises + +# overhonor (level 95) +A DV: overhonor / B D: overhonour +A DV: overhonors / B D: overhonours +A DV: overhonor's / B D: overhonour's + +# overhumanize (level 95) +A Z: overhumanize / B: overhumanise +A Z: overhumanizes / B: overhumanises + +# overindustrialization (level 95) +A Z: overindustrialization / B: overindustrialisation +A Z: overindustrializations / B: overindustrialisations +A Z: overindustrialization's / B: overindustrialisation's + +# overindustrialize (level 70) +A Z: overindustrialize / B: overindustrialise +A Z: overindustrializes / B: overindustrialises + +# overjudgment (level 95) +A: overjudgment / B: overjudgement +A: overjudgments / B: overjudgements +A: overjudgment's / B: overjudgement's + +# overlabor (level 80) +A: overlabor / B: overlabour +A: overlabored / B: overlaboured +A: overlaboring / B: overlabouring +A: overlabors / B: overlabours +A: overlabor's / B: overlabour's + +# overnationalization (level 95) +A Z: overnationalization / B: overnationalisation +A Z: overnationalizations / B: overnationalisations +A Z: overnationalization's / B: overnationalisation's + +# overrapturize (level 95) +A Z: overrapturize / B: overrapturise +A Z: overrapturizes / B: overrapturises + +# overrationalize (level 95) +A Z: overrationalize / B: overrationalise +A Z: overrationalizes / B: overrationalises + +# oversentimentalize (level 95) +A Z: oversentimentalize / B: oversentimentalise +A Z: oversentimentalizes / B: oversentimentalises + +# oversize (level 40) +A Bv: oversize / Av B: oversized + +# overspecialization (level 60) +A Z: overspecialization / B: overspecialisation +A Z: overspecializations / B: overspecialisations +A Z: overspecialization's / B: overspecialisation's + +# overspecialize (level 50) +A Z: overspecialize / B: overspecialise +A Z: overspecialized / B: overspecialised +A Z: overspecializing / B: overspecialising +A Z: overspecializes / B: overspecialises + +# oversystematize (level 95) +A Z: oversystematize / B: oversystematise +A Z: oversystematizes / B: oversystematises + +# overunionized (level 95) +A Z: overunionized / B: overunionised +A Z: overunionizeds / B: overunioniseds +A Z: overunionized's / B: overunionised's + +# overurbanization (level 95) +A Z: overurbanization / B: overurbanisation +A Z: overurbanizations / B: overurbanisations +A Z: overurbanization's / B: overurbanisation's + +# overutilization (level 80) +A Z: overutilization / B: overutilisation + +# overwomanize (level 95) +A Z: overwomanize / B: overwomanise +A Z: overwomanizes / B: overwomanises + +# ower (level 80) +A: ower / B: owre + +# owercome (level 95) +A: owercome / B: owrecome + +# owerword (level 95) +A: owerword / B: owreword + +# oxalemia (level 95) +A Dv: oxalemia / B D: oxalaemia + +# oxidizability (level 95) +A Z: oxidizability / B: oxidisability +A Z: oxidizabilities / B: oxidisabilities +A Z: oxidizability's / B: oxidisability's + +# oxidizable (level 70) +A Z: oxidizable / B: oxidisable +A Z: oxidizables / B: oxidisables +A Z: oxidizable's / B: oxidisable's + +# oxidization (level 55) +A Z: oxidization / B: oxidisation +A Z: oxidizations / B: oxidisations +A Z: oxidization's / B: oxidisation's + +# oxidize (level 35) +A Z: oxidize / B: oxidise +A Z: oxidized / B: oxidised +A Z: oxidizing / B: oxidising +A Z: oxidizes / B: oxidises +A Z: oxidizings / B: oxidisings + +# oxidizement (level 95) +A Z: oxidizement / B: oxidisement +A Z: oxidizements / B: oxidisements +A Z: oxidizement's / B: oxidisement's + +# oxidizer (level 50) +A Z: oxidizer / B: oxidiser +A Z: oxidizers / B: oxidisers +A Z: oxidizer's / B: oxidiser's + +# oxygenizable (level 95) +A Z: oxygenizable / B: oxygenisable +A Z: oxygenizables / B: oxygenisables +A Z: oxygenizable's / B: oxygenisable's + +# oxygenize (level 80) +A Z: oxygenize / B: oxygenise +A Z: oxygenized / B: oxygenised +A Z: oxygenizing / B: oxygenising +A Z: oxygenizes / B: oxygenises + +# oxygenizement (level 95) +A Z: oxygenizement / B: oxygenisement +A Z: oxygenizements / B: oxygenisements +A Z: oxygenizement's / B: oxygenisement's + +# oxygenizer (level 95) +A Z: oxygenizer / B: oxygeniser +A Z: oxygenizers / B: oxygenisers +A Z: oxygenizer's / B: oxygeniser's + +# oxyhematin (level 95) +A Dv: oxyhematin / B D: oxyhaematin + +# oxyhemoglobin (level 80) +A Dv: oxyhemoglobin / B D: oxyhaemoglobin +A Dv: oxyhemoglobins / B D: oxyhaemoglobins + +# ozena (level 80) +A: ozena / B: ozaena +A: ozena / B: ozoena + +# ozonization (level 80) +A Z: ozonization / B: ozonisation +A Z: ozonizations / B: ozonisations +A Z: ozonization's / B: ozonisation's + +# ozonize (level 70) +A Z: ozonize / B: ozonise +A Z: ozonized / B: ozonised +A Z: ozonizing / B: ozonising +A Z: ozonizes / B: ozonises + +# ozonizer (level 80) +A Z: ozonizer / B: ozoniser +A Z: ozonizers / B: ozonisers +A Z: ozonizer's / B: ozoniser's + +# pachyemia (level 95) +A Dv: pachyemia / B D: pachyaemia + +# pachyhemia (level 95) +A Dv: pachyhemia / B D: pachyhaemia + +# packetization (level 99) +A Z: packetization / B: packetisation + +# packetize (level 99) +A Z: packetize / B: packetise +A Z: packetized / B: packetised +A Z: packetizing / B: packetising +A Z: packetizes / B: packetises + +# packetizer (level 99) +A Z: packetizer / B: packetiser +A Z: packetizers / B: packetisers +A Z: packetizer's / B: packetiser's + +# paeanize (level 95) +A Z: paeanize / B: paeanise +A Z: paeanizes / B: paeanises + +# paganization (level 80) +A Z: paganization / B: paganisation +A Z: paganizations / B: paganisations +A Z: paganization's / B: paganisation's + +# paganize (level 70) +A Z: paganize / B: paganise +A Z: paganized / B: paganised +A Z: paganizing / B: paganising +A Z: paganizes / B: paganises + +# paganizer (level 80) +A Z: paganizer / B: paganiser +A Z: paganizers / B: paganisers +A Z: paganizer's / B: paganiser's + +# pagine (level 95) +A: pagine / B: paginae + +# pajama (level 35) +A Cv: pajama / B C: pyjama +A Cv: pajamas / B C: pyjamas +A Cv: pajama's / B C: pyjama's +A Cv: pajamas's / B C: pyjamas's + +# pajamaed (level 80) +A: pajamaed / B: pyjamased + +# palame (level 80) +A: palame / B: palamae + +# palatalization (level 60) +A Z: palatalization / B: palatalisation +A Z: palatalizations / B: palatalisations +A Z: palatalization's / B: palatalisation's + +# palatalize (level 60) +A Z: palatalize / B: palatalise +A Z: palatalized / B: palatalised +A Z: palatalizing / B: palatalising +A Z: palatalizes / B: palatalises + +# palatization (level 95) +A Z: palatization / B: palatisation +A Z: palatizations / B: palatisations +A Z: palatization's / B: palatisation's + +# palatize (level 95) +A Z: palatize / B: palatise +A Z: palatizes / B: palatises + +# paleanthropic (level 80) +A Dv: paleanthropic / B D: palaeanthropic + +# Palearctic (level 70) +A C Dv: Palearctic / B D: Palaearctic + +# paleencephalon (level 95) +A Dv: paleencephalon / B D: palaeencephalon +A Dv: paleencephalon's / B D: palaeencephalon's +A Dv: paleoencephalon / B D: palaeoencephalon +A Dv: paleoencephalon's / B D: palaeoencephalon's + +# paleentomology (level 95) +A: paleentomology / B: palaeentomology + +# paleethnologic (level 80) +A Dv: paleethnologic / B D: palaeethnologic +A Dv: paleoethnologic / B D: palaeoethnologic + +# paleethnological (level 80) +A Dv: paleethnological / B D: palaeethnological +A Dv: paleoethnological / B D: palaeoethnological + +# paleethnologist (level 80) +A Dv: paleethnologist / B D: palaeethnologist +A Dv: paleoethnologist / B D: palaeoethnologist + +# paleethnology (level 70) +A Dv: paleethnology / B D: palaeethnology +A Dv: paleoethnology / B D: palaeoethnology + +# paleichthyologist (level 95) +A Dv: paleichthyologist / B D: palaeichthyologist + +# paleichthyology (level 95) +A Dv: paleichthyology / B D: palaeichthyology + +# paleoalchemical (level 95) +A Dv: paleoalchemical / B D: palaeoalchemical + +# paleoanthropic (level 80) +A Dv: paleoanthropic / B D: palaeoanthropic + +# paleoanthropography (level 95) +A Dv: paleoanthropography / B D: palaeoanthropography + +# paleoanthropological (level 80) +A Dv: paleoanthropological / B D: palaeoanthropological + +# paleoanthropologist (level 80) +A Dv: paleoanthropologist / B D: palaeoanthropologist +A Dv: paleoanthropologists / B D: palaeoanthropologists + +# paleoanthropology (level 80) +A Dv: paleoanthropology / B D: palaeoanthropology +A Dv: paleoanthropologies / B D: palaeoanthropologies + +# Paleoanthropus (level 80) +A Dv: Paleoanthropus / B D: Palaeoanthropus +A Dv: Paleoanthropus's / B D: Palaeoanthropus's + +# paleoatavism (level 95) +A Dv: paleoatavism / B D: palaeoatavism + +# paleoatavistic (level 95) +A Dv: paleoatavistic / B D: palaeoatavistic + +# paleobiogeography (level 80) +A Dv: paleobiogeography / B D: palaeobiogeography + +# paleobiologic (level 80) +A Dv: paleobiologic / B D: palaeobiologic + +# paleobiological (level 80) +A Dv: paleobiological / B D: palaeobiological + +# paleobiologist (level 70) +A Dv: paleobiologist / B D: palaeobiologist +A Dv: paleobiologists / B D: palaeobiologists +A Dv: paleobiologist's / B D: palaeobiologist's + +# paleobiology (level 70) +A Dv: paleobiology / B D: palaeobiology +A Dv: paleobiologies / B D: palaeobiologies +A Dv: paleobiology's / B D: palaeobiology's + +# paleobotanic (level 80) +A Dv: paleobotanic / B D: palaeobotanic + +# paleobotanical (level 80) +A Dv: paleobotanical / B D: palaeobotanical + +# paleobotanically (level 80) +A Dv: paleobotanically / B D: palaeobotanically + +# paleobotanist (level 80) +A Dv: paleobotanist / B D: palaeobotanist +A Dv: paleobotanists / B D: palaeobotanists + +# paleobotany (level 70) +A Dv: paleobotany / B D: palaeobotany +A Dv: paleobotanies / B D: palaeobotanies +A Dv: paleobotany's / B D: palaeobotany's + +# paleoceanography (level 95) +A Dv: paleoceanography / B D: palaeoceanography + +# paleochorology (level 95) +A Dv: paleochorology / B D: palaeochorology + +# paleoclimatic (level 80) +A Dv: paleoclimatic / B D: palaeoclimatic + +# paleoclimatologic (level 95) +A Dv: paleoclimatologic / B D: palaeoclimatologic + +# paleoclimatological (level 95) +A Dv: paleoclimatological / B D: palaeoclimatological + +# paleoclimatologist (level 80) +A Dv: paleoclimatologist / B D: palaeoclimatologist +A Dv: paleoclimatologists / B D: palaeoclimatologists +A Dv: paleoclimatologist's / B D: palaeoclimatologist's + +# paleoclimatology (level 70) +A C Dv: paleoclimatology / B D: palaeoclimatology +A C Dv: paleoclimatologies / B D: palaeoclimatologies +A C Dv: paleoclimatology's / B D: palaeoclimatology's + +# Paleoconcha (level 95) +A Dv: Paleoconcha / B D: Palaeoconcha +A Dv: Paleoconcha's / B D: Palaeoconcha's + +# paleocosmic (level 95) +A Dv: paleocosmic / B D: palaeocosmic + +# paleocosmology (level 95) +A Dv: paleocosmology / B D: palaeocosmology + +# paleocrystal (level 95) +A Dv: paleocrystal / B D: palaeocrystal + +# paleocrystallic (level 95) +A Dv: paleocrystallic / B D: palaeocrystallic + +# paleocrystalline (level 95) +A Dv: paleocrystalline / B D: palaeocrystalline + +# paleocrystic (level 80) +A Dv: paleocrystic / B D: palaeocrystic + +# paleocyclic (level 95) +A Dv: paleocyclic / B D: palaeocyclic + +# paleodendrologic (level 95) +A Dv: paleodendrologic / B D: palaeodendrologic + +# paleodendrological (level 95) +A Dv: paleodendrological / B D: palaeodendrological + +# paleodendrologically (level 95) +A Dv: paleodendrologically / B D: palaeodendrologically + +# paleodendrologist (level 95) +A Dv: paleodendrologist / B D: palaeodendrologist + +# paleodendrology (level 95) +A Dv: paleodendrology / B D: palaeodendrology + +# paleoecologic (level 80) +A Dv: paleoecologic / B D: palaeoecologic + +# paleoecological (level 80) +A Dv: paleoecological / B D: palaeoecological + +# paleoecologist (level 80) +A Dv: paleoecologist / B D: palaeoecologist +A Dv: paleoecologists / B D: palaeoecologists +A Dv: paleoecologist's / B D: palaeoecologist's + +# paleoecology (level 70) +A C Dv: paleoecology / B D: palaeoecology +A C Dv: paleoecologies / B D: palaeoecologies +A C Dv: paleoecology's / B D: palaeoecology's + +# paleoentomologic (level 95) +A Dv: paleoentomologic / B D: palaeoentomologic + +# paleoentomological (level 95) +A Dv: paleoentomological / B D: palaeoentomological + +# paleoentomologist (level 95) +A Dv: paleoentomologist / B D: palaeoentomologist +A Dv: paleoentomologist's / B D: palaeoentomologist's + +# paleoeremology (level 95) +A Dv: paleoeremology / B D: palaeoeremology + +# paleoethnic (level 95) +A Dv: paleoethnic / B D: palaeoethnic + +# paleoethnography (level 95) +A Dv: paleoethnography / B D: palaeoethnography + +# paleofauna (level 95) +A Dv: paleofauna / B D: palaeofauna + +# paleogenesis (level 95) +A Dv: paleogenesis / B D: palaeogenesis +A Dv: paleogenesis's / B D: palaeogenesis's + +# paleogenetic (level 95) +A Dv: paleogenetic / B D: palaeogenetic + +# paleogeographer (level 80) +A Dv: paleogeographer / B D: palaeogeographer +A Dv: paleogeographers / B D: palaeogeographers + +# paleogeographic (level 80) +A Dv: paleogeographic / B D: palaeogeographic + +# paleogeographical (level 80) +A Dv: paleogeographical / B D: palaeogeographical + +# paleogeographically (level 80) +A Dv: paleogeographically / B D: palaeogeographically + +# paleogeography (level 70) +A C Dv: paleogeography / B D: palaeogeography +A C Dv: paleogeographies / B D: palaeogeographies + +# paleogeology (level 95) +A Dv: paleogeology / B D: palaeogeology + +# paleoglaciology (level 95) +A Dv: paleoglaciology / B D: palaeoglaciology + +# paleoglyph (level 95) +A Dv: paleoglyph / B D: palaeoglyph + +# paleograph (level 95) +A Dv: paleograph / B D: palaeograph + +# paleographic (level 70) +A Dv: paleographic / B D: palaeographic + +# paleographical (level 70) +A Dv: paleographical / B D: palaeographical + +# paleographically (level 80) +A Dv: paleographically / B D: palaeographically + +# paleographist (level 80) +A Dv: paleographist / B D: palaeographist + +# paleoherpetologist (level 95) +A Dv: paleoherpetologist / B D: palaeoherpetologist + +# paleoherpetology (level 95) +A Dv: paleoherpetology / B D: palaeoherpetology + +# paleohistology (level 95) +A Dv: paleohistology / B D: palaeohistology + +# paleohydrography (level 95) +A Dv: paleohydrography / B D: palaeohydrography + +# paleoichthyology (level 95) +A Dv: paleoichthyology / B D: palaeoichthyology + +# paleolatry (level 95) +A Dv: paleolatry / B D: palaeolatry + +# paleolimnology (level 80) +A Dv: paleolimnology / B D: palaeolimnology + +# paleolith (level 70) +A Dv: paleolith / B D: palaeolith +A Dv: paleoliths / B D: palaeoliths +A Dv: paleolith's / B D: palaeolith's + +# paleolithic (level 55) +A C Dv: paleolithic / B D: palaeolithic +A C Dv: Paleolithic / B D: Palaeolithic + +# paleolithical (level 95) +A Dv: paleolithical / B D: palaeolithical + +# paleolithist (level 95) +A Dv: paleolithist / B D: palaeolithist + +# paleolithoid (level 95) +A Dv: paleolithoid / B D: palaeolithoid + +# paleolithy (level 95) +A Dv: paleolithy / B D: palaeolithy + +# paleological (level 95) +A Dv: paleological / B D: palaeological + +# paleologist (level 95) +A Dv: paleologist / B D: palaeologist +A Dv: paleologist's / B D: palaeologist's + +# paleology (level 95) +A Dv: paleology / B D: palaeology + +# paleomagnetism (level 80) +A Dv: paleomagnetism / B D: palaeomagnetism +A Dv: paleomagnetisms / B D: palaeomagnetisms +A Dv: paleomagnetism's / B D: palaeomagnetism's + +# paleometallic (level 95) +A Dv: paleometallic / B D: palaeometallic + +# paleometeorological (level 95) +A Dv: paleometeorological / B D: palaeometeorological + +# paleometeorology (level 95) +A Dv: paleometeorology / B D: palaeometeorology + +# paleontographic (level 80) +A Dv: paleontographic / B D: palaeontographic + +# paleontographical (level 80) +A Dv: paleontographical / B D: palaeontographical + +# paleontography (level 70) +A Dv: paleontography / B D: palaeontography +A Dv: paleontographies / B D: palaeontographies +A Dv: paleontography's / B D: palaeontography's + +# paleontol (level 70) +A Dv: paleontol / B D: palaeontol + +# paleontologic (level 70) +A Dv: paleontologic / B D: palaeontologic + +# paleontological (level 70) +A C Dv: paleontological / B D: palaeontological + +# paleontologically (level 95) +A Dv: paleontologically / B D: palaeontologically + +# paleontologist (level 35) +A C Dv: paleontologist / B D: palaeontologist +A C Dv: paleontologist's / B D: palaeontologist's +A C Dv: paleontologists / B D: palaeontologists + +# paleontology (level 35) +A C Dv: paleontology / B D: palaeontology +A C Dv: paleontology's / B D: palaeontology's + +# paleopathologic (level 95) +A Dv: paleopathologic / B D: palaeopathologic + +# paleopathological (level 80) +A Dv: paleopathological / B D: palaeopathological + +# paleopathologist (level 80) +A Dv: paleopathologist / B D: palaeopathologist +A Dv: paleopathologists / B D: palaeopathologists + +# paleopathology (level 80) +A Dv: paleopathology / B D: palaeopathology +A Dv: paleopathologies / B D: palaeopathologies + +# paleopedology (level 80) +A Dv: paleopedology / B D: palaeopedology + +# paleophysiography (level 95) +A Dv: paleophysiography / B D: palaeophysiography + +# paleophysiology (level 95) +A Dv: paleophysiology / B D: palaeophysiology + +# paleophytic (level 95) +A Dv: paleophytic / B D: palaeophytic + +# paleophytological (level 95) +A Dv: paleophytological / B D: palaeophytological + +# paleophytologist (level 95) +A Dv: paleophytologist / B D: palaeophytologist + +# paleophytology (level 80) +A Dv: paleophytology / B D: palaeophytology + +# paleoplain (level 95) +A Dv: paleoplain / B D: palaeoplain + +# paleopotamology (level 95) +A Dv: paleopotamology / B D: palaeopotamology + +# paleopsychic (level 95) +A Dv: paleopsychic / B D: palaeopsychic + +# paleopsychological (level 95) +A Dv: paleopsychological / B D: palaeopsychological + +# paleopsychology (level 70) +A Dv: paleopsychology / B D: palaeopsychology + +# paleornithological (level 95) +A Dv: paleornithological / B D: palaeornithological + +# paleornithology (level 95) +A Dv: paleornithology / B D: palaeornithology + +# paleostriatal (level 95) +A Dv: paleostriatal / B D: palaeostriatal + +# paleostriatum (level 95) +A Dv: paleostriatum / B D: palaeostriatum + +# paleostylic (level 95) +A Dv: paleostylic / B D: palaeostylic + +# paleostyly (level 95) +A Dv: paleostyly / B D: palaeostyly + +# paleotechnic (level 95) +A Dv: paleotechnic / B D: palaeotechnic + +# paleothalamus (level 95) +A Dv: paleothalamus / B D: palaeothalamus + +# Paleotropical (level 95) +A Dv: Paleotropical / B D: Palaeotropical +A Dv: Paleotropical's / B D: Palaeotropical's + +# paleovolcanic (level 95) +A Dv: paleovolcanic / B D: palaeovolcanic + +# paleozoic (level 95) +A Dv: paleozoic / B D: palaeozoic + +# paleozoologic (level 95) +A Dv: paleozoologic / B D: palaeozoologic + +# paleozoological (level 80) +A Dv: paleozoological / B D: palaeozoological + +# paleozoologist (level 80) +A Dv: paleozoologist / B D: palaeozoologist +A Dv: paleozoologists / B D: palaeozoologists +A Dv: paleozoologist's / B D: palaeozoologist's + +# paleozoology (level 70) +A Dv: paleozoology / B D: palaeozoology +A Dv: paleozoologies / B D: palaeozoologies +A Dv: paleozoology's / B D: palaeozoology's + +# palestra (level 70) +A Dv: palestra / B D: palaestra +A Dv: palestras / B D: palaestras +A Dv: palestra's / B D: palaestra's + +# palestrae (level 70) +A Dv: palestrae / B D: palaestrae + +# palestral (level 80) +A Dv: palestral / B D: palaestral + +# palestrian (level 95) +A Dv: palestrian / B D: palaestrian + +# palestric (level 80) +A Dv: palestric / B D: palaestric + +# paletiology (level 95) +A Dv: paletiology / B D: palaetiology + +# palladiumize (level 95) +A Z: palladiumize / B: palladiumise +A Z: palladiumizes / B: palladiumises + +# palletization (level 80) +A Z: palletization / B: palletisation +A Z: palletizations / B: palletisations +A Z: palletization's / B: palletisation's + +# palletize (level 80) +A Z: palletize / B: palletise +A Z: palletized / B: palletised +A Z: palletizing / B: palletising +A Z: palletizes / B: palletises + +# palletizer (level 80) +A Z: palletizer / B: palletiser +A Z: palletizers / B: palletisers +A Z: palletizer's / B: palletiser's + +# pamperize (level 95) +A Z: pamperize / B: pamperise +A Z: pamperizes / B: pamperises + +# pamphletize (level 95) +A Z: pamphletize / B: pamphletise +A Z: pamphletizes / B: pamphletises + +# panderize (level 95) +A Z: panderize / B: panderise +A Z: panderizes / B: panderises + +# pandora (level 70) +A: pandora / B: pandoura + +# panegyrize (level 70) +A Z: panegyrize / B: panegyrise +A Z: panegyrized / B: panegyrised +A Z: panegyrizing / B: panegyrising +A Z: panegyrizes / B: panegyrises + +# panel (level 35) +A: paneled / B: panelled +A: paneling / B: panelling +A: panelings / B: panellings +A: paneling's / B: panelling's + +# panelist (level 40) +A: panelist / B: panellist +A: panelists / B: panellists +A: panelist's / B: panellist's + +# panelization (level 99) +A: panelization / B: panellisation / Z: panellization + +# panelized (level 99) +A Z: panelized / B: panelised + +# panesthesia (level 80) +A Dv: panesthesia / B D: panaesthesia +A Dv: panesthesias / B D: panaesthesias + +# panesthetic (level 95) +A Dv: panesthetic / B D: panaesthetic + +# pangea (level 95) +A: pangea / B: pangaea + +# pannier (level 50) +_: pannier / _V: panier +_: panniers / _V: paniers +_: pannier's / _V: panier's + +# panomphean (level 80) +A: panomphean / B: panomphaean + +# pantheonization (level 95) +A Z: pantheonization / B: pantheonisation +A Z: pantheonizations / B: pantheonisations +A Z: pantheonization's / B: pantheonisation's + +# pantheonize (level 95) +A Z: pantheonize / B: pantheonise +A Z: pantheonizes / B: pantheonises + +# pantie (level 35) +_: pantie / _v: panty +_: pantie's / _v: panty's + +# papalization (level 95) +A Z: papalization / B: papalisation +A Z: papalizations / B: papalisations +A Z: papalization's / B: papalisation's + +# papalize (level 80) +A Z: papalize / B: papalise +A Z: papalized / B: papalised +A Z: papalizing / B: papalising +A Z: papalizes / B: papalises + +# papalizer (level 95) +A Z: papalizer / B: papaliser +A Z: papalizers / B: papalisers + +# papilledema (level 95) +A Dv: papilledema / B D: papilloedema + +# papule (level 70) +A: papule / B: papulae + +# parabolization (level 95) +A Z: parabolization / B: parabolisation +A Z: parabolization's / B: parabolisation's + +# parabolize (level 70) +A Z: parabolize / B: parabolise +A Z: parabolized / B: parabolised +A Z: parabolizing / B: parabolising +A Z: parabolizes / B: parabolises + +# paraffinize (level 95) +A Z: paraffinize / B: paraffinise +A Z: paraffinizes / B: paraffinises + +# paragraphize (level 95) +A Z: paragraphize / B: paragraphise +A Z: paragraphizes / B: paragraphises + +# parakeet (level 35) +_: parakeet / _V: parrakeet +_: parakeets / _V: parrakeets +_: parakeet's / _V: parrakeet's + +# parallelization (level 95) +A Z: parallelization / B: parallelisation +A Z: parallelizations / B: parallelisations +A Z: parallelization's / B: parallelisation's + +# parallelize (level 70) +A Z: parallelize / B: parallelise +A Z: parallelized / B: parallelised +A Z: parallelizing / B: parallelising +A Z: parallelizes / B: parallelises + +# parallelizer (level 95) +A Z: parallelizer / B: paralleliser +A Z: parallelizers / B: parallelisers + +# paralogize (level 80) +A Z: paralogize / B: paralogise +A Z: paralogized / B: paralogised +A Z: paralogizing / B: paralogising +A Z: paralogizes / B: paralogises + +# paralyzation (level 80) +A: paralyzation / B: paralysation +A: paralyzations / B: paralysations +A: paralyzation's / B: paralysation's + +# paralyze (level 35) +A C: paralyze / B Cv: paralyse +A C: paralyzed / B Cv: paralysed +A C: paralyzing / B Cv: paralysing +A C: paralyzes / B Cv: paralyses +A B: paralyses | [paralysis] + +# paralyzedly (level 95) +A: paralyzedly / B: paralysedly +A: paralyzedlies / B: paralysedlies + +# paralyzer (level 80) +A: paralyzer / B: paralyser +A: paralyzers / B: paralysers +A: paralyzer's / B: paralyser's + +# paralyzingly (level 60) +A: paralyzingly / B: paralysingly +A: paralyzinglies / B: paralysinglies + +# Paramecium (level 95) +A: Paramecium / B: Paramoecium +A: Paramecium's / B: Paramoecium's + +# parameterizable (level 95) +A Z: parameterizable / B: parameterisable + +# parameterization (level 80) +A Z: parameterization / B: parameterisation +A Z: parameterizations / B: parameterisations +A Z: parameterization's / B: parameterisation's + +# parameterize (level 80) +A Z: parameterize / B: parameterise +A Z: parameterized / B: parameterised +A Z: parameterizing / B: parameterising +A Z: parameterizes / B: parameterises + +# parametrizable (level 99) +A Z: parametrizable / B: parametrisable + +# parametrization (level 70) +A Z: parametrization / B: parametrisation +A Z: parametrizations / B: parametrisations +A Z: parametrization's / B: parametrisation's + +# parametrize (level 70) +A Z: parametrize / B: parametrise +A Z: parametrized / B: parametrised +A Z: parametrizing / B: parametrising +A Z: parametrizes / B: parametrises + +# paraselene (level 70) +A: paraselene / B: paraselenae + +# parasitemia (level 80) +A Dv: parasitemia / B D: parasitaemia + +# parasitization (level 80) +A Z: parasitization / B: parasitisation + +# parasitize (level 70) +A Z: parasitize / B: parasitise +A Z: parasitized / B: parasitised +A Z: parasitizing / B: parasitising +A Z: parasitizes / B: parasitises + +# parathyroidectomize (level 80) +A Z: parathyroidectomize / B: parathyroidectomise +A Z: parathyroidectomized / B: parathyroidectomised +A Z: parathyroidectomizing / B: parathyroidectomising +A Z: parathyroidectomizes / B: parathyroidectomises + +# paratragedia (level 95) +A: paratragedia / B: paratragoedia + +# parcel (level 35) +A: parceled / B: parcelled +A: parceling / B: parcelling +A: parceling's / B: parcelling's + +# parceler (level 99) +A: parceler / B: parceller + +# parchmentize (level 80) +A Z: parchmentize / B: parchmentise +A Z: parchmentized / B: parchmentised +A Z: parchmentizing / B: parchmentising +A Z: parchmentizes / B: parchmentises + +# parecious (level 80) +A Dv: parecious / B D: paroecious + +# pareciously (level 95) +A Dv: pareciously / B D: paroeciously + +# pareciousness (level 95) +A Dv: pareciousness / B D: paroeciousness + +# parecism (level 80) +A Dv: parecism / B D: paroecism + +# parecy (level 95) +A Dv: parecy / B D: paroecy + +# parenesis (level 80) +A Dv: parenesis / B D: paraenesis +A Dv: pareneses / B D: paraeneses + +# parenetic (level 80) +A Dv: parenetic / B D: paraenetic + +# parenetical (level 80) +A Dv: parenetical / B D: paraenetical + +# parenthesization (level 99) +A Z: parenthesization / B: parenthesisation + +# parenthesize (level 20) +A Z: parenthesize / B: parenthesise +A Z: parenthesized / B: parenthesised +A Z: parenthesizing / B: parenthesising +A Z: parenthesizes / B: parenthesises + +# paresthesia (level 70) +A Dv: paresthesia / B D: paraesthesia +A Dv: paresthesias / B D: paraesthesias +A Dv: paresthesia's / B D: paraesthesia's + +# paresthetic (level 80) +A Dv: paresthetic / B D: paraesthetic + +# parfocalization (level 99) +A Z: parfocalization / B: parfocalisation + +# parfocalize (level 80) +A Z: parfocalize / B: parfocalise + +# Parisianization (level 95) +A Z: Parisianization / B: Parisianisation +A Z: Parisianizations / B: Parisianisations +A Z: Parisianization's / B: Parisianisation's + +# Parisianize (level 95) +A Z: Parisianize / B: Parisianise +A Z: Parisianizes / B: Parisianises +A Z: Parisianize's / B: Parisianise's + +# parlor (level 35) +A Cv DV: parlor / B C D: parlour +A Cv DV: parlors / B C D: parlours +A Cv DV: parlor's / B C D: parlour's + +# parlorish (level 95) +A: parlorish / B: parlourish + +# parlormaid (level 70) +A DV: parlormaid / B D: parlourmaid + +# parmigiana (level 60) +_: parmigiana / _v: parmigiano + +# parochialization (level 95) +A Z: parochialization / B: parochialisation +A Z: parochializations / B: parochialisations +A Z: parochialization's / B: parochialisation's + +# parochialize (level 80) +A Z: parochialize / B: parochialise +A Z: parochialized / B: parochialised +A Z: parochializing / B: parochialising +A Z: parochializes / B: parochialises + +# parrotize (level 95) +A Z: parrotize / B: parrotise +A Z: parrotizes / B: parrotises + +# parsonize (level 95) +A Z: parsonize / B: parsonise +A Z: parsonizes / B: parsonises + +# partialize (level 80) +A Z: partialize / B: partialise +A Z: partialized / B: partialised +A Z: partializing / B: partialising +A Z: partializes / B: partialises + +# particolored (level 70) +A DV: particolored / B D: particoloured +A DV: particoloredder / B D: particolouredder +A DV: particoloreddest / B D: particoloureddest + +# particularization (level 50) +A Z: particularization / B: particularisation +A Z: particularizations / B: particularisations +A Z: particularization's / B: particularisation's + +# particularize (level 50) +A Z: particularize / B: particularise +A Z: particularized / B: particularised +A Z: particularizing / B: particularising +A Z: particularizes / B: particularises + +# particularizer (level 80) +A Z: particularizer / B: particulariser +A Z: particularizer's / B: particulariser's + +# partisan (level 35) +_: partisan / _V: partizan | :1 +_: partisans / _V: partizans | :1 +_: partisan's / _V: partizan's | :1 +_: partisan / _v: partizan | :2 +_: partisans / _v: partizans | :2 +_: partisan's / _v: partizan's | :2 + +# partisanize (level 95) +A Z: partisanize / B: partisanise +A Z: partisanizes / B: partisanises + +# Pasiphae (level 95) +A: Pasiphae / B: Pasiphaae +A: Pasiphae's / B: Pasiphaae's + +# passades (level 80) +A: passades / B: passadoes + +# passivization (level 55) +A Z: passivization / B: passivisation + +# passivize (level 55) +_: passivize / _-: passivise +_: passivized / _-: passivised +_: passivizing / _-: passivising +_: passivizes / _-: passivises + +# pasteurization (level 35) +A Z: pasteurization / B: pasteurisation +A Z: pasteurizations / B: pasteurisations +A Z: pasteurization's / B: pasteurisation's + +# pasteurize (level 35) +A Z: pasteurize / B: pasteurise +A Z: pasteurized / B: pasteurised +A Z: pasteurizing / B: pasteurising +A Z: pasteurizes / B: pasteurises + +# Pasteurizers (level 60) +A Z: Pasteurizers / B: Pasteurisers +A Z: pasteurizer / B: pasteuriser +A Z: pasteurizers / B: pasteurisers +A Z: pasteurizer's / B: pasteuriser's + +# pastoralize (level 70) +A Z: pastoralize / B: pastoralise +A Z: pastoralizes / B: pastoralises + +# pastorize (level 95) +A Z: pastorize / B: pastorise +A Z: pastorizes / B: pastorises + +# paternalize (level 95) +A Z: paternalize / B: paternalise +A Z: paternalizes / B: paternalises + +# patine (level 50) +A: patine / B: patinae +A: patined / B: patinaed + +# patrialization (level 80) +A Z: patrialization / B: patrialisation +A Z: patrializations / B: patrialisations + +# patrialize (level 80) +A Z: patrialize / B: patrialise +A Z: patrialized / B: patrialised +A Z: patrializing / B: patrialising +A Z: patrializes / B: patrialises + +# patrices (level 80) +A: patrices / B: patricoes + +# patronizable (level 95) +A Z: patronizable / B: patronisable +A Z: patronizabler / B: patronisabler +A Z: patronizables / B: patronisables +A Z: patronizablest / B: patronisablest +A Z: patronizable's / B: patronisable's + +# patronization (level 70) +A Z: patronization / B: patronisation +A Z: patronizations / B: patronisations +A Z: patronization's / B: patronisation's + +# patronize (level 20) +A Z: patronize / B: patronise +A Z: patronized / B: patronised +A Z: patronizing / B: patronising +A Z: patronizes / B: patronises +A Z: patronizings / B: patronisings +A Z: patronizing's / B: patronising's + +# patronizer (level 60) +A Z: patronizer / B: patroniser +A Z: patronizers / B: patronisers +A Z: patronizer's / B: patroniser's + +# patronizingly (level 40) +A Z: patronizingly / B: patronisingly +A Z: patronizinglier / B: patronisinglier +A Z: patronizingliest / B: patronisingliest + +# patte (level 80) +A: patte / B: pattae + +# patternize (level 95) +A Z: patternize / B: patternise +A Z: patternizes / B: patternises + +# Paulinize (level 95) +A Z: Paulinize / B: Paulinise +A Z: Paulinizes / B: Paulinises +A Z: Paulinize's / B: Paulinise's + +# pauperization (level 80) +A Z: pauperization / B: pauperisation +A Z: pauperizations / B: pauperisations +A Z: pauperization's / B: pauperisation's + +# pauperize (level 50) +A Z: pauperize / B: pauperise +A Z: pauperized / B: pauperised +A Z: pauperizing / B: pauperising +A Z: pauperizes / B: pauperises + +# pauperizer (level 95) +A Z: pauperizer / B: pauperiser +A Z: pauperizers / B: pauperisers +A Z: pauperizer's / B: pauperiser's + +# Pavior (level 80) +A: Pavior / B: Paviour +A: Pavior's / B: Paviour's +A: pavior / B: paviour +A: paviors / B: paviours +A: pavior's / B: paviour's + +# pawpaw (level 50) +_: pawpaw / _.: papaw +_: pawpaws / _.: papaws +_: pawpaw's / _.: papaw's + +# Paynize (level 95) +A Z: Paynize / B: Paynise +A Z: Paynizes / B: Paynises +A Z: Paynize's / B: Paynise's + +# pe (level 70) +A: pe / B: poe + +# pearlization (level 99) +A Z: pearlization / B: pearlisation + +# pearlize (level 80) +A Z: pearlize / B: pearlise +A Z: pearlized / B: pearlised +A Z: pearlizing / B: pearlising +A Z: pearlizes / B: pearlises + +# peasantize (level 95) +A Z: peasantize / B: peasantise +A Z: peasantizes / B: peasantises + +# pectization (level 80) +A Z: pectization / B: pectisation +A Z: pectizations / B: pectisations +A Z: pectization's / B: pectisation's + +# pectize (level 70) +A Z: pectize / B: pectise +A Z: pectized / B: pectised +A Z: pectizing / B: pectising +A Z: pectizes / B: pectises + +# peculiarize (level 70) +A Z: peculiarize / B: peculiarise +A Z: peculiarized / B: peculiarised +A Z: peculiarizing / B: peculiarising +A Z: peculiarizes / B: peculiarises + +# pedagogism (level 80) +A: pedagogism / B: paedagogism + +# pedagogue (level 50) +A B: pedagogue / AV: pedagog +A B: pedagogues / AV: pedagogs +A B: pedagogue's / AV: pedagog's + +# pedal (level 35) +A Cv: pedaled / B C: pedalled +A Cv: pedaler / B C: pedaller +A Cv: pedalers / B C: pedallers +A Cv: pedaler's / B C: pedaller's +A Cv: pedaling / B C: pedalling + +# pedanticize (level 80) +A Z: pedanticize / B: pedanticise +A Z: pedanticized / B: pedanticised +A Z: pedanticizing / B: pedanticising +A Z: pedanticizes / B: pedanticises + +# pedantize (level 80) +A Z: pedantize / B: pedantise +A Z: pedantized / B: pedantised +A Z: pedantizing / B: pedantising +A Z: pedantizes / B: pedantises + +# pedatrophia (level 95) +A: pedatrophia / B: paedatrophia + +# pedatrophy (level 95) +A: pedatrophy / B: paedatrophy + +# peddler (level 35) +A C: peddler / AV B Cv: pedlar +A C: peddlers / AV B Cv: pedlars +A C: peddler's / AV B Cv: pedlar's + +# pederast (level 50) +A B: pederast / B-: paederast +A B: pederast's / B-: paederast's +A B: pederasts / B-: paederasts + +# pederastic (level 70) +A: pederastic / B: paederastic + +# pederastically (level 80) +A: pederastically / B: paederastically + +# pedestal (level 80) +A: pedestaled / B: pedestalled +A: pedestaling / B: pedestalling + +# pedestrianization (level 55) +A Z: pedestrianization / B: pedestrianisation +A Z: pedestrianizations / B: pedestrianisations +A Z: pedestrianization's / B: pedestrianisation's + +# pedestrianize (level 50) +A Z: pedestrianize / B: pedestrianise +A Z: pedestrianized / B: pedestrianised +A Z: pedestrianizing / B: pedestrianising +A Z: pedestrianizes / B: pedestrianises + +# pediatric (level 35) +A C Dv: pediatric / B D: paediatric +A C Dv: pediatrics / B D: paediatrics + +# pediatrician (level 35) +A C Dv: pediatrician / AV: pediatrist / B D: paediatrician +A C Dv: pediatricians / AV: pediatrists / B D: paediatricians +A C Dv: pediatrician's / AV: pediatrist's / B D: paediatrician's + +# pediatry (level 80) +A: pediatry / B: paediatry + +# pedobaptism (level 80) +A: pedobaptism / B: paedobaptism +A: pedobaptism's / B: paedobaptism's + +# pedobaptist (level 80) +A: pedobaptist / B: paedobaptist +A: pedobaptist's / B: paedobaptist's + +# pedodontic (level 80) +A: pedodontic / B: paedodontic +A: pedodontics / B: paedodontics + +# pedogenesis (level 70) +A: pedogenesis / B: paedogenesis +A: pedogeneses / B: paedogeneses + +# pedogenetic (level 80) +A: pedogenetic / B: paedogenetic + +# pedogenic (level 80) +A: pedogenic / B: paedogenic + +# pedological (level 70) +A: pedological / B: paedological + +# pedologist (level 70) +A: pedologist / B: paedologist +A: pedologists / B: paedologists + +# pedology (level 70) +A Bv: pedology / B: paedology +A Bv: pedologies / B: paedologies +A Bv: pedology's / B: paedology's + +# pedometrical (level 95) +A: pedometrical / B: paedometrical + +# pedomorphic (level 80) +A: pedomorphic / B: paedomorphic + +# pedomorphism (level 80) +A: pedomorphism / B: paedomorphism +A: pedomorphisms / B: paedomorphisms + +# pedomorphosis (level 80) +A: pedomorphosis / B: paedomorphosis +A: pedomorphoses / B: paedomorphoses + +# pedophile (level 55) +A C Dv: pedophile / B D: paedophile +A C Dv: pedophiles / B D: paedophiles + +# pedophilia (level 55) +A Dv: pedophilia / B D: paedophilia +A Dv: pedophilias / B D: paedophilias + +# pedophiliac (level 80) +A Dv: pedophiliac / B D: paedophiliac +A Dv: pedophiliacs / B D: paedophiliacs + +# pedophilic (level 70) +A Dv: pedophilic / B D: paedophilic + +# pedotribe (level 80) +A: pedotribe / B: paedotribe + +# pedotrophic (level 95) +A: pedotrophic / B: paedotrophic + +# pedotrophist (level 95) +A: pedotrophist / B: paedotrophist + +# pedotrophy (level 80) +A: pedotrophy / B: paedotrophy + +# peize (level 80) +A Z: peize / B: peise +A Z: peized / B: peised +A Z: peizing / B: peising +A Z: peizes / B: peises + +# Pekingese (level 50) +_: Pekingese / _v: Pekinese +_: Pekingese's / _v: Pekinese's + +# pelletization (level 80) +A Z: pelletization / B: pelletisation +A Z: pelletizations / B: pelletisations +A Z: pelletization's / B: pelletisation's + +# pelletize (level 70) +A Z: pelletize / B: pelletise +A Z: pelletized / B: pelletised +A Z: pelletizing / B: pelletising +A Z: pelletizes / B: pelletises + +# pelletizer (level 80) +A Z: pelletizer / B: pelletiser + +# pelorized (level 80) +A Z: pelorized / B: pelorised + +# pemmicanization (level 95) +A Z: pemmicanization / B: pemmicanisation +A Z: pemmicanizations / B: pemmicanisations +A Z: pemmicanization's / B: pemmicanisation's + +# pemmicanize (level 95) +A Z: pemmicanize / B: pemmicanise +A Z: pemmicanizes / B: pemmicanises +A Z: pemmicanize's / B: pemmicanise's + +# penalizable (level 95) +A Z: penalizable / B: penalisable +A Z: penalizabler / B: penalisabler +A Z: penalizables / B: penalisables +A Z: penalizablest / B: penalisablest +A Z: penalizable's / B: penalisable's + +# penalization (level 60) +A Z: penalization / B: penalisation +A Z: penalizations / B: penalisations +A Z: penalization's / B: penalisation's + +# penalize (level 35) +A Z: penalize / B: penalise +A Z: penalized / B: penalised +A Z: penalizing / B: penalising +A Z: penalizes / B: penalises + +# pencil (level 35) +A: penciled / B: pencilled +A: penciling / B: pencilling +A: pencilings / B: pencillings + +# penciler (level 80) +A: penciler / B: penciller +A: pencilers / B: pencillers +A: penciler's / B: penciller's + +# penelopize (level 80) +A Z: penelopize / B: penelopise +A Z: penelopized / B: penelopised +A Z: penelopizing / B: penelopising +A Z: penelopizes / B: penelopises + +# penlight (level 50) +_: penlight / _V: penlite +_: penlights / _V: penlites +_: penlight's / _V: penlite's + +# penne (level 70) +A: penne / B: pennae + +# pense (level 95) +A: pense / B: pensae + +# peptizable (level 80) +A Z: peptizable / B: peptisable +A Z: peptizables / B: peptisables +A Z: peptizable's / B: peptisable's + +# peptization (level 80) +A Z: peptization / B: peptisation +A Z: peptizations / B: peptisations +A Z: peptization's / B: peptisation's + +# peptize (level 70) +A Z: peptize / B: peptise +A Z: peptized / B: peptised +A Z: peptizing / B: peptising +A Z: peptizes / B: peptises + +# peptizer (level 80) +A Z: peptizer / B: peptiser +A Z: peptizers / B: peptisers + +# peptonemia (level 95) +A: peptonemia / B: peptonaemia + +# peptonization (level 80) +A Z: peptonization / B: peptonisation +A Z: peptonizations / B: peptonisations +A Z: peptonization's / B: peptonisation's + +# peptonize (level 70) +A Z: peptonize / B: peptonise +A Z: peptonized / B: peptonised +A Z: peptonizing / B: peptonising +A Z: peptonizes / B: peptonises + +# peptonizer (level 95) +A Z: peptonizer / B: peptoniser +A Z: peptonizer's / B: peptoniser's + +# peracid (level 70) +A: peracid / B: preacid + +# peracidity (level 95) +A: peracidity / B: preacidity + +# peract (level 80) +A: peract / B: preact + +# peracute (level 80) +A: peracute / B: preacute + +# perambulatory (level 70) +A: perambulatory / B: preambulatory + +# perces (level 95) +A: perces / B: preces + +# perchlorethane (level 95) +A: perchlorethane / B: perchloroethane + +# perchlorethylene (level 80) +A: perchlorethylene / B: perchloroethylene + +# perchloric (level 80) +A: perchloric / B: prechloric + +# perclose (level 95) +A: perclose / B: preclose + +# percompound (level 95) +A: percompound / B: precompound + +# percurrent (level 80) +A: percurrent / B: precurrent + +# percussionize (level 95) +A Z: percussionize / B: percussionise +A Z: percussionizes / B: percussionises + +# perdicine (level 95) +A: perdicine / B: perdicinae + +# perdiligent (level 95) +A: perdiligent / B: prediligent + +# perdy (level 80) +A: perdy / B: predy + +# perennialize (level 95) +A Z: perennialize / B: perennialise +A Z: perennializes / B: perennialises + +# pereon (level 80) +A: pereon / B: peraeon +A: perea / B: peraea + +# pereopod (level 80) +A: pereopod / B: peraeopod +A: pereopods / B: peraeopods + +# perfectivize (level 95) +A Z: perfectivize / B: perfectivise +A Z: perfectivizes / B: perfectivises + +# perfervor (level 80) +A: perfervor / B: perfervour +A: perfervors / B: perfervours +A: perfervor's / B: perfervour's + +# perfet (level 95) +A: perfet / B: prefet + +# perfoliation (level 80) +A: perfoliation / B: prefoliation +A: perfoliations / B: prefoliations +A: prefoliation / B: praefoliation + +# performant (level 95) +A: performant / B: preformant + +# performative (level 70) +A: performative / B: preformative + +# perhazard (level 95) +A: perhazard / B: prehazard + +# pericecal (level 95) +A: pericecal / B: pericaecal + +# pericecitis (level 95) +A: pericecitis / B: pericaecitis + +# pericenter (level 95) +A: pericenter / B: pericentre + +# perichete (level 95) +A: perichete / B: perichaete + +# pericope (level 70) +A: pericope / B: pericopae + +# periesophageal (level 95) +A: periesophageal / B: perioesophageal + +# peril (level 35) +A: periled / B: perilled +A: periling / B: perilling + +# periodicalize (level 95) +A Z: periodicalize / B: periodicalise +A Z: periodicalizes / B: periodicalises + +# periodization (level 70) +A Z: periodization / B: periodisation +A Z: periodizations / B: periodisations +A Z: periodization's / B: periodisation's + +# periodize (level 95) +A Z: periodize / B: periodise +A Z: periodized / B: periodised +A Z: periodizing / B: periodising +A Z: periodizes / B: periodises + +# perjink (level 80) +A: perjink / B: prejink + +# perlection (level 80) +A: perlection / B: prelection +A: prelection / B: praelection +A: prelection's / B: praelection's + +# perlingual (level 80) +A: perlingual / B: prelingual + +# perlingually (level 95) +A: perlingually / B: prelingually + +# permissable (level 95) +A: permissable / B: premissable + +# permixture (level 95) +A: permixture / B: premixture + +# pernasal (level 80) +A: pernasal / B: prenasal + +# peroral (level 80) +A: peroral / B: preoral + +# perorally (level 80) +A: perorally / B: preorally + +# perotic (level 95) +A: perotic / B: preotic + +# peroxidize (level 70) +A Z: peroxidize / B: peroxidise +A Z: peroxidized / B: peroxidised +A Z: peroxidizing / B: peroxidising +A Z: peroxidizes / B: peroxidises + +# peroxidizement (level 95) +A Z: peroxidizement / B: peroxidisement +A Z: peroxidizements / B: peroxidisements +A Z: peroxidizement's / B: peroxidisement's + +# perpend (level 70) +A: perpend / B: prepend +A: perpended / B: prepended +A: perpending / B: prepending + +# perperfect (level 95) +A: perperfect / B: preperfect + +# Perse (level 70) +A: Perse / B: Persae +A: Perse's / B: Persae's +A: perse / B: prese + +# Persianization (level 95) +A Z: Persianization / B: Persianisation +A Z: Persianizations / B: Persianisations +A Z: Persianization's / B: Persianisation's + +# Persianize (level 80) +A Z: Persianize / B: Persianise +A Z: Persianized / B: Persianised +A Z: Persianized's / B: Persianised's +A Z: Persianizing / B: Persianising +A Z: Persianizes / B: Persianises +A Z: Persianize's / B: Persianise's +A Z: Persianizing's / B: Persianising's + +# Persicize (level 80) +A Z: Persicize / B: Persicise +A Z: Persicized / B: Persicised +A Z: Persicized's / B: Persicised's +A Z: Persicizing / B: Persicising +A Z: Persicizes / B: Persicises +A Z: Persicize's / B: Persicise's +A Z: Persicizing's / B: Persicising's + +# persolve (level 80) +A: persolve / B: presolve + +# personalization (level 70) +A Z: personalization / B: personalisation +A Z: personalizations / B: personalisations +A Z: personalization's / B: personalisation's + +# personalize (level 35) +A Z: personalize / B: personalise +A Z: personalized / B: personalised +A Z: personalizing / B: personalising +A Z: personalizes / B: personalises + +# personization (level 95) +A Z: personization / B: personisation +A Z: personizations / B: personisations +A Z: personization's / B: personisation's + +# personize (level 80) +A Z: personize / B: personise +A Z: personized / B: personised +A Z: personizing / B: personising +A Z: personizes / B: personises + +# perst (level 80) +A: perst / B: prest + +# Peruvianize (level 95) +A Z: Peruvianize / B: Peruvianise +A Z: Peruvianizes / B: Peruvianises +A Z: Peruvianize's / B: Peruvianise's + +# perv (level 55) +A: perv / B: prev + +# perve (level 80) +A: perve / B: preve +A: perved / B: preved +A: perving / B: preving +A: perves / B: preves + +# perviable (level 80) +A: perviable / B: previable + +# perviousness (level 70) +A: perviousness / B: previousness +A: perviousnesses / B: previousnesses + +# petaled (level 60) +A: petaled / B: petalled + +# petling (level 95) +A: petling / B: poetling + +# Petrarchize (level 80) +A Z: Petrarchize / B: Petrarchise +A Z: Petrarchized / B: Petrarchised +A Z: Petrarchized's / B: Petrarchised's +A Z: Petrarchizing / B: Petrarchising +A Z: Petrarchizes / B: Petrarchises +A Z: Petrarchize's / B: Petrarchise's +A Z: Petrarchizing's / B: Petrarchising's + +# petrolization (level 95) +A Z: petrolization / B: petrolisation +A Z: petrolizations / B: petrolisations +A Z: petrolization's / B: petrolisation's + +# petrolize (level 95) +A Z: petrolize / B: petrolise +A Z: petrolizes / B: petrolises + +# phacochere (level 95) +A: phacochere / B: phacochoere + +# phacocherine (level 95) +A: phacocherine / B: phacochoerine + +# Phaenna (level 95) +A: Phaenna / B: Phaaenna +A: Phaenna's / B: Phaaenna's + +# phagedena (level 80) +A: phagedena / B: phagedaena +A: phagedenas / B: phagedaenas + +# phagedenic (level 80) +A: phagedenic / B: phagedaenic + +# phagedenical (level 95) +A: phagedenical / B: phagedaenical + +# phagedenous (level 95) +A: phagedenous / B: phagedaenous + +# phagocytize (level 80) +A Z: phagocytize / B: phagocytise +A Z: phagocytizes / B: phagocytises + +# phalanges (level 50) +_: phalanges | bone +_: phalanxes / _v: phalanges | army + +# phantomize (level 95) +A Z: phantomize / B: phantomise +A Z: phantomizes / B: phantomises + +# phantomizer (level 95) +A Z: phantomizer / B: phantomiser +A Z: phantomizers / B: phantomisers + +# Pharisean (level 95) +A: Pharisean / B: Pharisaean +A: Pharisean's / B: Pharisaean's + +# pharmacopeian (level 80) +A: pharmacopeian / B: pharmacopoeian + +# pharmacopoeia (level 50) +_: pharmacopoeia / _v: pharmacopeia +_: pharmacopoeias / _v: pharmacopeias +_: pharmacopoeia's / _v: pharmacopeia's + +# pharmacopoeial (level 80) +A B: pharmacopoeial / AV: pharmacopeial + +# phelonion (level 80) +A: phelonion / B: phaelonion +A: phelonions / B: phaelonions + +# phenicia (level 95) +A: phenicia / B: phoenicia + +# phenicopter (level 95) +A: phenicopter / B: phoenicopter + +# phenogam (level 80) +A: phenogam / B: phaenogam +A: phenogams / B: phaenogams + +# phenogenesis (level 95) +A: phenogenesis / B: phaenogenesis + +# phenogenetic (level 95) +A: phenogenetic / B: phaenogenetic + +# phenolization (level 95) +A Z: phenolization / B: phenolisation +A Z: phenolizations / B: phenolisations +A Z: phenolization's / B: phenolisation's + +# phenolize (level 95) +A Z: phenolize / B: phenolise +A Z: phenolizes / B: phenolises + +# phenological (level 80) +A: phenological / B: phaenological + +# phenology (level 70) +A: phenology / B: phaenology +A: phenologies / B: phaenologies + +# phenomenalization (level 95) +A Z: phenomenalization / B: phenomenalisation +A Z: phenomenalizations / B: phenomenalisations +A Z: phenomenalization's / B: phenomenalisation's + +# phenomenalize (level 80) +A Z: phenomenalize / B: phenomenalise +A Z: phenomenalized / B: phenomenalised +A Z: phenomenalizing / B: phenomenalising +A Z: phenomenalizes / B: phenomenalises + +# phenomenism (level 80) +A: phenomenism / B: phaenomenism + +# phenomenize (level 80) +A Z: phenomenize / B: phenomenise +A Z: phenomenized / B: phenomenised +A Z: phenomenizing / B: phenomenising +A Z: phenomenizes / B: phenomenises + +# phenozygous (level 95) +A: phenozygous / B: phaenozygous + +# pheophyl (level 95) +A: pheophyl / B: phaeophyl + +# pheophyll (level 95) +A: pheophyll / B: phaeophyll + +# pheophytin (level 95) +A: pheophytin / B: phaeophytin + +# phiale (level 95) +A: phiale / B: phialae + +# philanthropize (level 70) +A Z: philanthropize / B: philanthropise +A Z: philanthropized / B: philanthropised +A Z: philanthropizing / B: philanthropising +A Z: philanthropizes / B: philanthropises + +# Philippize (level 80) +A Z: Philippize / B: Philippise +A Z: Philippized / B: Philippised +A Z: Philippized's / B: Philippised's +A Z: Philippizing / B: Philippising +A Z: Philippizes / B: Philippises +A Z: Philippize's / B: Philippise's +A Z: Philippizing's / B: Philippising's + +# Philistinize (level 80) +A Z: Philistinize / B: Philistinise +A Z: Philistinized / B: Philistinised +A Z: Philistinized's / B: Philistinised's +A Z: Philistinizing / B: Philistinising +A Z: Philistinizes / B: Philistinises +A Z: Philistinize's / B: Philistinise's +A Z: Philistinizing's / B: Philistinising's + +# philopena (level 80) +A: philopena / B: philopoena +A: philopenas / B: philopoenas + +# philosophization (level 95) +A Z: philosophization / B: philosophisation +A Z: philosophizations / B: philosophisations +A Z: philosophization's / B: philosophisation's + +# philosophize (level 35) +A Z: philosophize / B: philosophise +A Z: philosophized / B: philosophised +A Z: philosophizing / B: philosophising +A Z: philosophizes / B: philosophises + +# philosophizer (level 60) +A Z: philosophizer / B: philosophiser +A Z: philosophizers / B: philosophisers +A Z: philosophizer's / B: philosophiser's + +# philter (level 50) +A: philter / B: philtre +A: philter's / B: philtre's +A: philters / B: philtres + +# phlebotomization (level 95) +A Z: phlebotomization / B: phlebotomisation +A Z: phlebotomizations / B: phlebotomisations +A Z: phlebotomization's / B: phlebotomisation's + +# phlebotomize (level 70) +A Z: phlebotomize / B: phlebotomise +A Z: phlebotomized / B: phlebotomised +A Z: phlebotomizing / B: phlebotomising +A Z: phlebotomizes / B: phlebotomises + +# phleum (level 95) +A: phleum / B: phloeum + +# phlyctena (level 70) +A: phlyctena / B: phlyctaena +A: phlyctenae / B: phlyctaenae +A: phlyctena's / B: phlyctaena's + +# phlyctenula (level 95) +A: phlyctenula / B: phlyctaenula + +# Phocean (level 80) +A: Phocean / B: Phocaean + +# phonemicization (level 80) +A Z: phonemicization / B: phonemicisation +A Z: phonemicizations / B: phonemicisations + +# phonemicize (level 80) +A Z: phonemicize / B: phonemicise +A Z: phonemicized / B: phonemicised +A Z: phonemicizing / B: phonemicising +A Z: phonemicizes / B: phonemicises + +# phoneticization (level 80) +A Z: phoneticization / B: phoneticisation +A Z: phoneticizations / B: phoneticisations +A Z: phoneticization's / B: phoneticisation's + +# phoneticize (level 80) +A Z: phoneticize / B: phoneticise +A Z: phoneticized / B: phoneticised +A Z: phoneticizing / B: phoneticising +A Z: phoneticizes / B: phoneticises + +# phonetization (level 80) +A Z: phonetization / B: phonetisation +A Z: phonetizations / B: phonetisations + +# phonetize (level 80) +A Z: phonetize / B: phonetise +A Z: phonetized / B: phonetised +A Z: phonetizing / B: phonetising +A Z: phonetizes / B: phonetises + +# phony (level 35) +A BV C: phony / AV B Bv Cv: phoney | +A Bv BV C: phonies / AV B Cv: phoneys | +A BV C: phony's / AV B Bv Cv: phoney's | +A B: phonier | +A B: phoniest | +A B: phonied / AV: phoneyed | (-) +A B: phonying / AV: phoneying | (-) + +# phorrhea (level 95) +A: phorrhea / B: phorrhoea + +# phosphatization (level 80) +A Z: phosphatization / B: phosphatisation +A Z: phosphatizations / B: phosphatisations +A Z: phosphatization's / B: phosphatisation's + +# phosphatize (level 70) +A Z: phosphatize / B: phosphatise +A Z: phosphatized / B: phosphatised +A Z: phosphatizing / B: phosphatising +A Z: phosphatizes / B: phosphatises + +# phosphorize (level 80) +A Z: phosphorize / B: phosphorise +A Z: phosphorized / B: phosphorised +A Z: phosphorizing / B: phosphorising +A Z: phosphorizes / B: phosphorises + +# photesthesis (level 95) +A: photesthesis / B: photaesthesis +A: photesthesis / B: photoesthesis + +# photocatalyzer (level 95) +A: photocatalyzer / B: photocatalyser +A: photocatalyzers / B: photocatalysers +A: photocatalyzer's / B: photocatalyser's + +# photoesthetic (level 95) +A: photoesthetic / B: photoaesthetic + +# photographize (level 95) +A Z: photographize / B: photographise +A Z: photographizes / B: photographises + +# photoionization (level 80) +A Z: photoionization / B: photoionisation +A Z: photoionizations / B: photoionisations +A Z: photoionization's / B: photoionisation's + +# photoisomerization (level 80) +A Z: photoisomerization / B: photoisomerisation +A Z: photoisomerizations / B: photoisomerisations +A Z: photoisomerization's / B: photoisomerisation's + +# photolabeled (level 99) +A: photolabeled / B: photolabelled + +# photolabeler (level 99) +A: photolabeler / B: photolabeller + +# photolabeling (level 99) +A: photolabeling / B: photolabelling + +# photolyzable (level 80) +A: photolyzable / B: photolysable + +# photolyze (level 80) +A C: photolyze / B: photolyse +A C: photolyzed / B: photolysed +A C: photolyzing / B: photolysing +A C: photolyzes / B: photolyses + +# photopolymerization (level 95) +A Z: photopolymerization / B: photopolymerisation +A Z: photopolymerizations / B: photopolymerisations +A Z: photopolymerization's / B: photopolymerisation's + +# photosensitization (level 80) +A Z: photosensitization / B: photosensitisation +A Z: photosensitizations / B: photosensitisations +A Z: photosensitization's / B: photosensitisation's + +# photosensitize (level 70) +A Z: photosensitize / B: photosensitise +A Z: photosensitized / B: photosensitised +A Z: photosensitizing / B: photosensitising +A Z: photosensitizes / B: photosensitises + +# photosensitizer (level 80) +A Z: photosensitizer / B: photosensitiser +A Z: photosensitizers / B: photosensitisers +A Z: photosensitizer's / B: photosensitiser's + +# photosynthesize (level 60) +A Z: photosynthesize / B: photosynthesise +A Z: photosynthesized / B: photosynthesised +A Z: photosynthesizing / B: photosynthesising +A Z: photosynthesizes / B: photosynthesises + +# phrenologize (level 80) +A Z: phrenologize / B: phrenologise +A Z: phrenologized / B: phrenologised +A Z: phrenologizing / B: phrenologising +A Z: phrenologizes / B: phrenologises + +# Phylactolema (level 95) +A: Phylactolema / B: Phylactolaema +A: Phylactolemata / B: Phylactolaemata +A: Phylactolema's / B: Phylactolaema's +A: Phylactolemata's / B: Phylactolaemata's + +# phytoecology (level 95) +A: phytoecology / B: phytooecology + +# phytohemagglutinin (level 80) +A: phytohemagglutinin / B: phytohaemagglutinin + +# piarhemic (level 95) +A: piarhemic / B: piarhaemic + +# piaster (level 60) +A: piaster / B: piastre +A: piasters / B: piastres +A: piaster's / B: piastre's + +# picogram (level 80) +A C: picogram / B: picogramme +A C: picograms / B: picogrammes +A C: picogram's / B: picogramme's + +# picometer (level 95) +A: picometer / B: picometre +A: picometers / B: picometres +A: picometer's / B: picometre's + +# pictorialization (level 80) +A Z: pictorialization / B: pictorialisation +A Z: pictorializations / B: pictorialisations +A Z: pictorialization's / B: pictorialisation's + +# pictorialize (level 80) +A Z: pictorialize / B: pictorialise +A Z: pictorialized / B: pictorialised +A Z: pictorializing / B: pictorialising +A Z: pictorializes / B: pictorialises + +# picturization (level 80) +A Z: picturization / B: picturisation +A Z: picturizations / B: picturisations +A Z: picturization's / B: picturisation's + +# picturize (level 70) +A Z: picturize / B: picturise +A Z: picturized / B: picturised +A Z: picturizing / B: picturising +A Z: picturizes / B: picturises + +# pidginization (level 80) +A Z: pidginization / B: pidginisation +A Z: pidginizations / B: pidginisations +A Z: pidginization's / B: pidginisation's + +# pidginize (level 80) +A Z: pidginize / B: pidginise +A Z: pidginized / B: pidginised +A Z: pidginizing / B: pidginising +A Z: pidginizes / B: pidginises + +# piggyback (level 35) +_: piggyback / _V: pickaback +_: piggybacking / _V: pickabacking +_: piggybacks / _V: pickabacks +_: piggyback's / _V: pickaback's +_: pigiedback / _V: pickabacked + +# pigmean (level 80) +A: pigmean / B: pigmaean + +# pigmentize (level 95) +A Z: pigmentize / B: pigmentise +A Z: pigmentizes / B: pigmentises + +# pilaf (level 50) +_: pilaf / _V1: pilaw / _V2: pilau / _V3: pilaff +_: pilafs / _V1: pilaws / _V2: pilaus / _V3: pilaffs +_: pilaf's / _V1: pilaw's / _V2: pilau's / _V3: pilaff's + +# pilgrimize (level 70) +A Z: pilgrimize / B: pilgrimise +A Z: pilgrimized / B: pilgrimised +A Z: pilgrimizing / B: pilgrimising +A Z: pilgrimizes / B: pilgrimises + +# pillarize (level 95) +A Z: pillarize / B: pillarise +A Z: pillarizes / B: pillarises + +# pillorize (level 80) +A Z: pillorize / B: pillorise +A Z: pillorized / B: pillorised +A Z: pillorizing / B: pillorising +A Z: pillorizes / B: pillorises + +# pillowbeer (level 95) +A: pillowbeer / B: pillowbere + +# Pindarize (level 80) +A Z: Pindarize / B: Pindarise +A Z: Pindarized / B: Pindarised +A Z: Pindarized's / B: Pindarised's +A Z: Pindarizing / B: Pindarising +A Z: Pindarizes / B: Pindarises +A Z: Pindarize's / B: Pindarise's +A Z: Pindarizing's / B: Pindarising's + +# piney (level 55) +_: piney / _.: piny + +# pinkie (level 40) +_: pinkie | :1 +_: pinkie / _v: pinky | :2 +_: pinkie's / _v: pinky's | :2 + +# pinnule (level 70) +A: pinnule / B: pinnulae + +# pinochle (level 50) +_: pinochle / _-: pinocle +_: pinochle's / _-: pinocle's + +# pinyon (level 60) +_: pinyon / _v: piñon +_: pinyons / _v: piñons +_: pinyon's / _v: piñon's + +# piratize (level 95) +A Z: piratize / B: piratise +A Z: piratizes / B: piratises + +# piroshki (level 60) +_: piroshki / _v: pirozhki +_: piroshki's / _v: pirozhki's + +# piscine (level 70) +A: piscine / B: piscinae + +# pistol (level 80) +A: pistoled / B: pistolled +A: pistoling / B: pistolling + +# pixie (level 35) +_: pixie / _V: pixy +_: pixie's / _V: pixy's + +# pixieish (level 70) +_: pixieish / _V: pixyish + +# pizes (level 80) +A Z: pizes / B: pises + +# pizzazz (level 40) +_: pizzazz / _. _v: pizazz +_ _.: pizzazzes / _v: pizazzes +_: pizzazz's / _. _v: pizazz's + +# Placean (level 95) +A: Placean / B: Placaean +A: Placean's / B: Placaean's + +# placebos (level 40) +_: placebos / _-: placeboes + +# plage (level 70) +A: plage / B: plagae + +# plagiarization (level 95) +A Z: plagiarization / B: plagiarisation +A Z: plagiarizations / B: plagiarisations +A Z: plagiarization's / B: plagiarisation's + +# plagiarize (level 35) +A Z: plagiarize / B: plagiarise +A Z: plagiarized / B: plagiarised +A Z: plagiarizing / B: plagiarising +A Z: plagiarizes / B: plagiarises + +# plagiarizer (level 60) +A Z: plagiarizer / B: plagiariser +A Z: plagiarizers / B: plagiarisers +A Z: plagiarizer's / B: plagiariser's + +# Plante (level 95) +A: Plante / B: Plantae +A: Plante's / B: Plantae's + +# plantule (level 80) +A: plantule / B: plantulae + +# plasmapheresis (level 80) +A: plasmapheresis / B: plasmaphaeresis + +# plasmolyze (level 70) +A: plasmolyze / B: plasmolyse +A: plasmolyzed / B: plasmolysed +A: plasmolyzing / B: plasmolysing +A: plasmolyzes / B: plasmolyses + +# plasticization (level 80) +A Z: plasticization / B: plasticisation +A Z: plasticizations / B: plasticisations +A Z: plasticization's / B: plasticisation's + +# plasticize (level 60) +A Z: plasticize / B: plasticise +A Z: plasticized / B: plasticised +A Z: plasticizing / B: plasticising +A Z: plasticizes / B: plasticises + +# plasticizer (level 70) +A Z: plasticizer / B: plasticiser +A Z: plasticizers / B: plasticisers +A Z: plasticizer's / B: plasticiser's + +# platea (level 95) +A: platea / B: plataea + +# platinization (level 80) +A Z: platinization / B: platinisation +A Z: platinizations / B: platinisations +A Z: platinization's / B: platinisation's + +# platinize (level 70) +A Z: platinize / B: platinise +A Z: platinized / B: platinised +A Z: platinizing / B: platinising +A Z: platinizes / B: platinises + +# platitudinization (level 95) +A Z: platitudinization / B: platitudinisation +A Z: platitudinizations / B: platitudinisations +A Z: platitudinization's / B: platitudinisation's + +# platitudinize (level 70) +A Z: platitudinize / B: platitudinise +A Z: platitudinized / B: platitudinised +A Z: platitudinizing / B: platitudinising +A Z: platitudinizes / B: platitudinises + +# platitudinizer (level 95) +A Z: platitudinizer / B: platitudiniser +A Z: platitudinizer's / B: platitudiniser's + +# Platonization (level 95) +A Z: Platonization / B: Platonisation +A Z: Platonization's / B: Platonisation's +A Z: platonization / B: platonisation + +# Platonize (level 80) +A Z: Platonize / B: Platonise +A Z: Platonized / B: Platonised +A Z: Platonizing / B: Platonising +A Z: Platonizes / B: Platonises +A Z: platonize / B: platonise +A Z: platonized / B: platonised +A Z: platonizing / B: platonising +A Z: platonizes / B: platonises + +# Platonizer (level 95) +A Z: Platonizer / B: Platoniser +A Z: Platonizer's / B: Platoniser's + +# platycelian (level 95) +A: platycelian / B: platycoelian + +# platycelous (level 95) +A: platycelous / B: platycoelous + +# plebeianization (level 95) +A Z: plebeianization / B: plebeianisation +A Z: plebeianization's / B: plebeianisation's + +# plebeianize (level 80) +A Z: plebeianize / B: plebeianise +A Z: plebeianized / B: plebeianised +A Z: plebeianizing / B: plebeianising +A Z: plebeianizes / B: plebeianises + +# pleuroperitoneal (level 95) +A: pleuroperitoneal / B: pleuroperitonaeal + +# plow (level 35) +A C: plow / B Cv: plough +A C: plowed / B Cv: ploughed +A C: plowing / B Cv: ploughing +A C: plow's / B Cv: plough's +A C: plowing's / B Cv: ploughing's +A C: plows / B Cv: ploughs + +# plowable (level 70) +A C: plowable / B: ploughable + +# plowboy (level 70) +A: plowboy / B: ploughboy +A: plowboys / B: ploughboys +A: plowboy's / B: ploughboy's + +# plower (level 70) +A C: plower / B: plougher +A C: plowers / B: ploughers +A C: plower's / B: plougher's + +# plowhead (level 80) +A: plowhead / B: ploughhead + +# plowman (level 50) +A Cv: plowman / B C: ploughman +A Cv: plowmen / B C: ploughmen +A Cv: plowman's / B C: ploughman's + +# plowshare (level 50) +A Cv: plowshare / B C: ploughshare +A Cv: plowshares / B C: ploughshares +A Cv: plowshare's / B C: ploughshare's + +# plumule (level 70) +A: plumule / B: plumulae + +# pluralization (level 60) +A Z: pluralization / B: pluralisation +A Z: pluralizations / B: pluralisations +A Z: pluralization's / B: pluralisation's + +# pluralize (level 50) +A Z: pluralize / B: pluralise +A Z: pluralized / B: pluralised +A Z: pluralizing / B: pluralising +A Z: pluralizes / B: pluralises + +# pluralizer (level 80) +A Z: pluralizer / B: pluraliser +A Z: pluralizers / B: pluralisers +A Z: pluralizer's / B: pluraliser's + +# poeticization (level 99) +A Z: poeticization / B: poeticisation + +# poeticize (level 70) +A Z: poeticize / B: poeticise +A Z: poeticized / B: poeticised +A Z: poeticizing / B: poeticising +A Z: poeticizes / B: poeticises + +# poetization (level 95) +A Z: poetization / B: poetisation +A Z: poetizations / B: poetisations +A Z: poetization's / B: poetisation's + +# poetize (level 70) +A Z: poetize / B: poetise +A Z: poetized / B: poetised +A Z: poetizing / B: poetising +A Z: poetizes / B: poetises + +# poetizer (level 80) +A Z: poetizer / B: poetiser +A Z: poetizers / B: poetisers +A Z: poetizer's / B: poetiser's + +# pogromize (level 95) +A Z: pogromize / B: pogromise +A Z: pogromizes / B: pogromises + +# pokey (level 35) +_: pokey | :1 +_: pokeys | :1 +_: pokey's | :1 +_: poky / _v: pokey | :2 +_ _v: pokier | :2 +_ _v: pokiest | :2 + +# polarizability (level 70) +A Z: polarizability / B: polarisability +A Z: polarizabilities / B: polarisabilities +A Z: polarizability's / B: polarisability's + +# polarizable (level 70) +A Z: polarizable / B: polarisable +A Z: polarizables / B: polarisables +A Z: polarizable's / B: polarisable's + +# polarization (level 35) +A Z: polarization / B: polarisation +A Z: polarizations / B: polarisations +A Z: polarization's / B: polarisation's + +# polarize (level 35) +A Z: polarize / B: polarise +A Z: polarized / B: polarised +A Z: polarizing / B: polarising +A Z: polarizes / B: polarises + +# polarizer (level 70) +A Z: polarizer / B: polariser +A Z: polarizers / B: polarisers +A Z: polarizer's / B: polariser's + +# polemicize (level 70) +A Z: polemicize / B: polemicise +A Z: polemicized / B: polemicised +A Z: polemicizing / B: polemicising +A Z: polemicizes / B: polemicises + +# polemize (level 80) +A Z: polemize / B: polemise +A Z: polemized / B: polemised +A Z: polemizing / B: polemising +A Z: polemizes / B: polemises + +# policize (level 95) +A Z: policize / B: policise +A Z: policizes / B: policises + +# policizer (level 95) +A Z: policizer / B: policiser +A Z: policizers / B: policisers + +# poliencephalitis (level 95) +A: poliencephalitis / B: polioencephalitis +A: poliencephalitis's / B: polioencephalitis's + +# poliencephalomyelitis (level 95) +A: poliencephalomyelitis / B: polioencephalomyelitis + +# politicalize (level 80) +A Z: politicalize / B: politicalise +A Z: politicalizes / B: politicalises + +# politicization (level 55) +A Z: politicization / B: politicisation +A Z: politicizations / B: politicisations +A Z: politicization's / B: politicisation's + +# politicize (level 40) +A Z: politicize / B: politicise +A Z: politicized / B: politicised +A Z: politicizing / B: politicising +A Z: politicizes / B: politicises + +# politicizer (level 95) +A Z: politicizer / B: politiciser +A Z: politicizers / B: politicisers + +# politize (level 95) +A Z: politize / B: politise +A Z: politizes / B: politises + +# pollack (level 60) +_: pollack / _v: pollock +_: pollack's / _v: pollock's + +# pollenizer (level 80) +A Z: pollenizer / B: polleniser + +# pollinize (level 70) +A Z: pollinize / B: pollinise +A Z: pollinized / B: pollinised +A Z: pollinizing / B: pollinising +A Z: pollinizes / B: pollinises + +# pollinizer (level 80) +A Z: pollinizer / B: polliniser + +# polliwog (level 50) +_: polliwog / _v: pollywog +_: polliwogs / _v: pollywogs +_: polliwog's / _v: pollywog's + +# Pollock (level 50) +_: Pollock | name + +# Polonization (level 80) +A Z: Polonization / B: Polonisation +A Z: Polonization's / B: Polonisation's + +# polonize (level 80) +A Z: polonize / B: polonise +A Z: polonized / B: polonised +A Z: polonizing / B: polonising +A Z: polonizes / B: polonises + +# polychetous (level 80) +A: polychetous / B: polychaetous + +# polychromatize (level 95) +A Z: polychromatize / B: polychromatise +A Z: polychromatizes / B: polychromatises + +# polychromize (level 95) +A Z: polychromize / B: polychromise +A Z: polychromizes / B: polychromises + +# polycythemia (level 70) +A Dv: polycythemia / B D: polycythaemia +A Dv: polycythemias / B D: polycythaemias + +# polycythemic (level 80) +A Dv: polycythemic / B D: polycythaemic + +# polydemonism (level 80) +A: polydemonism / B: polydaemonism +A: polydemonisms / B: polydaemonisms + +# polydemonist (level 95) +A: polydemonist / B: polydaemonist +A: polydemonist's / B: polydaemonist's + +# polyemia (level 95) +A: polyemia / B: polyaemia + +# polyemic (level 95) +A: polyemic / B: polyaemic + +# polyestrous (level 80) +A: polyestrous / B: polyoestrous + +# polygamize (level 80) +A Z: polygamize / B: polygamise +A Z: polygamizes / B: polygamises + +# polyhemia (level 95) +A: polyhemia / B: polyhaemia + +# polyhemic (level 95) +A: polyhemic / B: polyhaemic + +# polymerization (level 50) +A Z: polymerization / B: polymerisation +A Z: polymerizations / B: polymerisations +A Z: polymerization's / B: polymerisation's + +# polymerize (level 60) +A Z: polymerize / B: polymerise +A Z: polymerized / B: polymerised +A Z: polymerizing / B: polymerising +A Z: polymerizes / B: polymerises + +# polypnea (level 80) +A: polypnea / B: polypnoea + +# polypneic (level 95) +A: polypneic / B: polypnoeic + +# polysulphurization (level 95) +A Z: polysulphurization / B: polysulphurisation +A Z: polysulphurizations / B: polysulphurisations +A Z: polysulphurization's / B: polysulphurisation's + +# polytetrafluorethylene (level 80) +A: polytetrafluorethylene / B: polytetrafluoroethylene +A: polytetrafluorethylenes / B: polytetrafluoroethylenes + +# pomerium (level 80) +A: pomerium / B: pomoerium + +# pomme (level 95) +A: pomme / B: pommae + +# pommel (level 50) +A: pommeled / B: pommelled +A: pommeling / B: pommelling + +# popliteal (level 70) +A: popliteal / B: poplitaeal + +# popularization (level 50) +A Z: popularization / B: popularisation +A Z: popularizations / B: popularisations +A Z: popularization's / B: popularisation's + +# popularize (level 35) +A Z: popularize / B: popularise +A Z: popularized / B: popularised +A Z: popularizing / B: popularising +A Z: popularizes / B: popularises + +# popularizer (level 70) +A Z: popularizer / B: populariser +A Z: popularizers / B: popularisers +A Z: popularizer's / B: populariser's + +# porcelainization (level 95) +A Z: porcelainization / B: porcelainisation +A Z: porcelainizations / B: porcelainisations +A Z: porcelainization's / B: porcelainisation's + +# porcelainize (level 80) +A Z: porcelainize / B: porcelainise +A Z: porcelainized / B: porcelainised +A Z: porcelainizing / B: porcelainising +A Z: porcelainizes / B: porcelainises + +# porcellanize (level 80) +A Z: porcellanize / B: porcellanise +A Z: porcellanized / B: porcellanised +A Z: porcellanizing / B: porcellanising +A Z: porcellanizes / B: porcellanises + +# porer (level 70) +A: porer / B: pourer +A: porers / B: pourers + +# poringly (level 80) +A: poringly / B: pouringly + +# porphyrization (level 95) +A Z: porphyrization / B: porphyrisation +A Z: porphyrization's / B: porphyrisation's + +# porte (level 80) +A: porte / B: portae + +# portionize (level 95) +A Z: portionize / B: portionise +A Z: portionizes / B: portionises + +# positivize (level 95) +A Z: positivize / B: positivise +A Z: positivizes / B: positivises + +# postcecal (level 95) +A: postcecal / B: postcaecal + +# postcenal (level 95) +A: postcenal / B: postcoenal + +# posterize (level 95) +A Z: posterize / B: posterise +A Z: posterizes / B: posterises + +# postfetal (level 95) +A: postfetal / B: postfoetal + +# postilion (level 60) +A B: postilion / Av Bv: postillion +A B: postilions / Av Bv: postillions +A B: postilion's / Av Bv: postillion's + +# postmedieval (level 80) +A: postmedieval / B: postmediaeval + +# postsynchronization (level 99) +A Z: postsynchronization / B: postsynchronisation + +# posturize (level 70) +A Z: posturize / B: posturise +A Z: posturized / B: posturised +A Z: posturizing / B: posturising +A Z: posturizes / B: posturises + +# potentialization (level 95) +A Z: potentialization / B: potentialisation +A Z: potentializations / B: potentialisations +A Z: potentialization's / B: potentialisation's + +# potentialize (level 95) +A Z: potentialize / B: potentialise +A Z: potentializes / B: potentialises + +# potentize (level 80) +A Z: potentize / B: potentise +A Z: potentized / B: potentised +A Z: potentizing / B: potentising +A Z: potentizes / B: potentises + +# pouder (level 95) +A: pouder / B: poudre +A: pouders / B: poudres + +# pouf (level 55) +A B: pouffe / Av Bv: pouf | :1 +A B: pouffe's / Av Bv: pouf's | :1 +A B: pouf | :2 +A B: pouf's | :2 + +# poulder (level 95) +A: poulder / B: pouldre +A: poulders / B: pouldres + +# powderization (level 95) +A Z: powderization / B: powderisation +A Z: powderizations / B: powderisations +A Z: powderization's / B: powderisation's + +# powderize (level 95) +A Z: powderize / B: powderise +A Z: powderizes / B: powderises + +# powderizer (level 95) +A Z: powderizer / B: powderiser +A Z: powderizers / B: powderisers + +# powellize (level 80) +A Z: powellize / B: powellise +A Z: powellized / B: powellised +A Z: powellizing / B: powellising +A Z: powellizes / B: powellises + +# practice (level 10) +A B C: practice / AV Cv: practise | +A B C: practices / AV Cv: practises | +A B C: practice's / AV Cv: practise's | +A Cv: practice / AV B C: practise | +A Cv: practiced / AV B C: practised | +A Cv: practicing / AV B C: practising | +A Cv: practices / AV B C: practises | + +# practicer (level 70) +A: practicer / B: practiser +A: practicers / B: practisers +A: practicer's / B: practiser's + +# pragmatization (level 80) +A Z: pragmatization / B: pragmatisation +A Z: pragmatizations / B: pragmatisations + +# pragmatize (level 80) +A Z: pragmatize / B: pragmatise +A Z: pragmatized / B: pragmatised +A Z: pragmatizing / B: pragmatising +A Z: pragmatizes / B: pragmatises + +# pragmatizer (level 80) +A Z: pragmatizer / B: pragmatiser +A Z: pragmatizers / B: pragmatisers + +# preabdomen (level 95) +A: preabdomen / B: praeabdomen + +# preacetabular (level 95) +A: preacetabular / B: praeacetabular + +# preacherize (level 95) +A Z: preacherize / B: preacherise +A Z: preacherizes / B: preacherises + +# preacknowledgment (level 95) +A: preacknowledgment / B: preacknowledgement +A: preacknowledgments / B: preacknowledgements +A: preacknowledgment's / B: preacknowledgement's + +# preanal (level 80) +A: preanal / B: praeanal + +# preanesthetic (level 80) +A: preanesthetic / B: preanaesthetic +A: preanesthetics / B: preanaesthetics +A: preanesthetic's / B: preanaesthetic's + +# preapprize (level 95) +A Z: preapprize / B: preapprise + +# preapprized (level 95) +A Z: preapprized / B: preapprised + +# preapprizing (level 95) +A Z: preapprizing / B: preapprising + +# preauthorize (level 95) +A Z: preauthorize / B: preauthorise + +# prebaptize (level 95) +A Z: prebaptize / B: prebaptise +A Z: prebaptizes / B: prebaptises + +# precancelation (level 70) +A: precancelation / Av B: precancellation + +# precava (level 80) +A: precava / B: praecava +A: precavae / B: praecavae + +# precipe (level 80) +A: precipe / B: praecipe +A: precipes / B: praecipes + +# precisionize (level 95) +A Z: precisionize / B: precisionise +A Z: precisionizes / B: precisionises + +# precivilization (level 70) +A Z: precivilization / B: precivilisation +A Z: precivilizations / B: precivilisations +A Z: precivilization's / B: precivilisation's + +# precocial (level 80) +A: precocial / B: praecocial + +# precolor (level 95) +A DV: precolor / B D: precolour +A DV: precolored / B D: precoloured +A DV: precoloring / B D: precolouring +A DV: precolor's / B D: precolour's +A DV: precolorings / B D: precolourings +A DV: precolors / B D: precolours + +# precolorable (level 95) +A DV: precolorable / B D: precolourable +A DV: precolorabler / B D: precolourabler +A DV: precolorables / B D: precolourables +A DV: precolorablest / B D: precolourablest +A DV: precolorable's / B D: precolourable's + +# precoloration (level 95) +A: precoloration / B: precolouration +A: precolorations / B: precolourations +A: precoloration's / B: precolouration's + +# preconization (level 80) +A Z: preconization / B: preconisation +A Z: preconizations / B: preconisations +A Z: preconization's / B: preconisation's + +# preconize (level 70) +A Z: preconize / B: preconise +A Z: preconized / B: preconised +A Z: preconizing / B: preconising +A Z: preconizes / B: preconises + +# preconizer (level 95) +A Z: preconizer / B: preconiser +A Z: preconizers / B: preconisers +A Z: preconizer's / B: preconiser's + +# precoracoid (level 95) +A: precoracoid / B: praecoracoid + +# precordial (level 80) +A: precordial / B: praecordial + +# precordium (level 95) +A: precordium / B: praecordium +A: precordia / B: praecordia + +# precornu (level 95) +A: precornu / B: praecornu + +# precox (level 95) +A: precox / B: praecox + +# precriticize (level 95) +A Z: precriticize / B: precriticise +A Z: precriticizes / B: precriticises + +# precuneus (level 95) +A: precuneus / B: praecuneus + +# predial (level 70) +A: predial / B: praedial +A: predials / B: praedials + +# predialist (level 95) +A: predialist / B: praedialist + +# prediality (level 80) +A: prediality / B: praediality + +# preemptor (level 70) +A: preemptor / B: preaemptor +A: preemptor's / B: preaemptor's + +# preesophageal (level 95) +A: preesophageal / B: praeesophageal +A: preesophageal / B: preoesophageal + +# preestival (level 95) +A: preestival / B: preaestival + +# preexistent (level 70) +A: preexistent / B: preaexistent + +# prefavor (level 95) +A: prefavor / B: prefavour +A: prefavors / B: prefavours +A: prefavor's / B: prefavour's + +# prefavorable (level 95) +A: prefavorable / B: prefavourable +A: prefavorables / B: prefavourables +A: prefavorable's / B: prefavourable's + +# prefavorably (level 95) +A: prefavorably / B: prefavourably +A: prefavorablies / B: prefavourablies + +# prefavorite (level 95) +A: prefavorite / B: prefavourite +A: prefavorites / B: prefavourites +A: prefavorite's / B: prefavourite's + +# prefectorial (level 70) +A: prefectorial / B: praefectorial + +# prefertilization (level 95) +A Z: prefertilization / B: prefertilisation +A Z: prefertilizations / B: prefertilisations +A Z: prefertilization's / B: prefertilisation's + +# prefertilize (level 95) +A Z: prefertilize / B: prefertilise +A Z: prefertilizes / B: prefertilises + +# preflavor (level 95) +A: preflavor / B: preflavour +A: preflavors / B: preflavours +A: preflavor's / B: preflavour's + +# preflavoring (level 95) +A: preflavoring / B: preflavouring +A: preflavorings / B: preflavourings + +# prefloration (level 80) +A: prefloration / B: praefloration + +# pregalvanize (level 95) +A Z: pregalvanize / B: pregalvanise +A Z: pregalvanizes / B: pregalvanises + +# prehallux (level 80) +A: prehallux / B: praehallux + +# prehumor (level 95) +A: prehumor / B: prehumour +A: prehumors / B: prehumours +A: prehumor's / B: prehumour's + +# preinitialize (level 95) +A Z: preinitialize / B: preinitialise +A Z: preinitialized / B: preinitialised +A Z: preinitializing / B: preinitialising +A Z: preinitializes / B: preinitialises + +# prejudgment (level 50) +A Bv C: prejudgment / B: prejudgement +A Bv C: prejudgments / B: prejudgements +A Bv C: prejudgment's / B: prejudgement's + +# prelabor (level 95) +A: prelabor / B: prelabour +A: prelabors / B: prelabours +A: prelabor's / B: prelabour's + +# prelabrum (level 95) +A: prelabrum / B: praelabrum + +# prelatize (level 80) +A Z: prelatize / B: prelatise +A Z: prelatized / B: prelatised +A Z: prelatizing / B: prelatising +A Z: prelatizes / B: prelatises + +# prelect (level 70) +A: prelect / B: praelect +A: prelected / B: praelected +A: prelecting / B: praelecting +A: prelects / B: praelects + +# prelector (level 80) +A: prelector / B: praelector + +# prelectorship (level 95) +A: prelectorship / B: praelectorship + +# prelectress (level 95) +A: prelectress / B: praelectress + +# prelocalization (level 95) +A Z: prelocalization / B: prelocalisation +A Z: prelocalizations / B: prelocalisations +A Z: prelocalization's / B: prelocalisation's + +# preludium (level 80) +A Dv: preludium / B D: praeludium + +# preludize (level 95) +A Z: preludize / B: preludise +A Z: preludizes / B: preludises + +# premaxilla (level 70) +A: premaxilla / B: praemaxilla + +# premial (level 70) +A: premial / B: proemial + +# premillennialize (level 95) +A Z: premillennialize / B: premillennialise + +# premillennialized (level 95) +A Z: premillennialized / B: premillennialised + +# premillennializing (level 95) +A Z: premillennializing / B: premillennialising + +# premise (level 20) +A B: premise / AV Bv: premiss | +A B: premises / AV Bv: premisses | +A B: premise's / AV Bv: premiss's | +A B: premise | + +# premonopolize (level 95) +A Z: premonopolize / B: premonopolise +A Z: premonopolizes / B: premonopolises + +# premunire (level 70) +A: premunire / B: praemunire + +# prenarial (level 95) +A: prenarial / B: praenarial + +# preneural (level 95) +A: preneural / B: praeneural + +# prenomen (level 70) +A B: praenomen / AV: prenomen +A B: praenomens / AV: prenomens +A B: praenomen's / AV: prenomen's + +# prenomina (level 80) +A: prenomina / B: praenomina + +# prenominal (level 80) +A: prenominal / B: praenominal + +# preoffense (level 95) +A: preoffense / B: preoffence +A: preoffenses / B: preoffences +A: preoffense's / B: preoffence's + +# preoperculum (level 95) +A: preoperculum / B: praeoperculum + +# preorganization (level 95) +A Z: preorganization / B: preorganisation +A Z: preorganizations / B: preorganisations +A Z: preorganization's / B: preorganisation's + +# preorganize (level 95) +A Z: preorganize / B: preorganise +A Z: preorganizes / B: preorganises + +# preoxidize (level 99) +A Z: preoxidize / B: preoxidise +A Z: preoxidized / B: preoxidised +A Z: preoxidizing / B: preoxidising +A Z: preoxidizes / B: preoxidises + +# prepaleolithic (level 95) +A: prepaleolithic / B: prepalaeolithic + +# prepositor (level 70) +A: prepositor / B: praepositor + +# prepositure (level 95) +A: prepositure / B: praepositure + +# preposter (level 95) +A: preposter / B: praeposter + +# prepostor (level 80) +A: prepostor / B: praepostor +A: prepostors / B: praepostors +A: prepostor's / B: praepostor's + +# preppy (level 40) +_: preppy / _v: preppie +_: preppy's / _v: preppie's + +# preprogram (level 70) +A C: preprogram / B: preprogramme + +# prepubis (level 80) +A: prepubis / B: praepubis + +# prerealization (level 95) +A Z: prerealization / B: prerealisation +A Z: prerealizations / B: prerealisations +A Z: prerealization's / B: prerealisation's + +# prerealize (level 95) +A Z: prerealize / B: prerealise +A Z: prerealizes / B: prerealises + +# prerecognize (level 95) +A Z: prerecognize / B: prerecognise +A Z: prerecognizes / B: prerecognises + +# Presbyterianize (level 80) +A Z: Presbyterianize / B: Presbyterianise +A Z: Presbyterianized / B: Presbyterianised +A Z: Presbyterianized's / B: Presbyterianised's +A Z: Presbyterianizing / B: Presbyterianising +A Z: Presbyterianizes / B: Presbyterianises +A Z: Presbyterianize's / B: Presbyterianise's +A Z: Presbyterianizing's / B: Presbyterianising's + +# prescutum (level 80) +A: prescutum / B: praescutum + +# presidium (level 55) +A A. B: presidium / AV Bv: praesidium +A B: presidiums / A.: presidia / AV Bv: praesidiums # M-w has presidiums as a variant, but Ox doesn't say anything about the variant form +A A. B: presidium's / AV Bv: praesidium's + +# prespecialize (level 95) +A Z: prespecialize / B: prespecialise +A Z: prespecializes / B: prespecialises + +# presphenoid (level 95) +A: presphenoid / B: praesphenoid + +# presplendor (level 95) +A: presplendor / B: presplendour +A: presplendors / B: presplendours +A: presplendor's / B: presplendour's + +# pressurization (level 50) +A Z: pressurization / B: pressurisation +A Z: pressurizations / B: pressurisations +A Z: pressurization's / B: pressurisation's + +# pressurize (level 40) +A Z: pressurize / B: pressurise +A Z: pressurized / B: pressurised +A Z: pressurizing / B: pressurising +A Z: pressurizes / B: pressurises + +# pressurizer (level 60) +A Z: pressurizer / B: pressuriser +A Z: pressurizers / B: pressurisers + +# prestandardization (level 95) +A Z: prestandardization / B: prestandardisation +A Z: prestandardizations / B: prestandardisations +A Z: prestandardization's / B: prestandardisation's + +# prestandardize (level 95) +A Z: prestandardize / B: prestandardise +A Z: prestandardizes / B: prestandardises + +# presternal (level 95) +A: presternal / B: praesternal + +# presternum (level 80) +A: presternum / B: praesternum + +# prestomium (level 95) +A: prestomium / B: praestomium + +# presympathize (level 95) +A Z: presympathize / B: presympathise +A Z: presympathizes / B: presympathises + +# presystolic (level 95) +A: presystolic / B: praesystolic + +# pretaxation (level 95) +A: pretaxation / B: praetaxation + +# pretense (level 35) +A C: pretense / B Cv: pretence +A C: pretenses / B Cv: pretences +A C: pretense's / B Cv: pretence's + +# pretensive (level 95) +A: pretensive / B: pretencive + +# preterit (level 50) +A Cv: preterit / Av B C: preterite +A Cv: preterits / Av B C: preterites +A Cv: preterit's / Av B C: preterite's + +# pretexta (level 95) +A: pretexta / B: praetexta +A: pretextae / B: praetextae +A: pretexta's / B: praetexta's + +# pretorial (level 80) +A: pretorial / B: praetorial + +# Pretorians (level 80) +A: Pretorians / B: Praetorians + +# pretorium (level 80) +A: pretorium / B: praetorium + +# Pretorius (level 70) +A: Pretorius / B: Praetorius +A: Pretorius's / B: Praetorius's + +# pretorship (level 80) +A: pretorship / B: praetorship + +# preutilizable (level 95) +A Z: preutilizable / B: preutilisable +A Z: preutilizables / B: preutilisables +A Z: preutilizable's / B: preutilisable's + +# preutilization (level 95) +A Z: preutilization / B: preutilisation +A Z: preutilizations / B: preutilisations +A Z: preutilization's / B: preutilisation's + +# preutilize (level 95) +A Z: preutilize / B: preutilise +A Z: preutilizes / B: preutilises + +# preventable (level 35) +_: preventable / _V: preventible + +# preview (level 20) +A B: preview / AV: prevue | movie preview +A B: previews / AV: prevues | movie preview +A B: preview's / AV: prevue's | movie preview +A B: preview | otherwise + +# previze (level 70) +A Z: previze / B: previse + +# prezygapophysis (level 95) +A: prezygapophysis / B: praezygapophysis + +# pricey (level 40) +_: pricey / _V: pricy + +# prier (level 60) +_: prier / _V: pryer | +_: priers / _V: pryers | +_: prier's / _V: pryer's | + +# primeval (level 35) +A B: primeval / Bv: primaeval + +# primevally (level 70) +A B: primevally / Bv: primaevally + +# prioritization (level 55) +A Z: prioritization / B: prioritisation +A Z: prioritizations / B: prioritisations +A Z: prioritization's / B: prioritisation's + +# prioritize (level 40) +A Z: prioritize / B: prioritise +A Z: prioritized / B: prioritised +A Z: prioritizing / B: prioritising +A Z: prioritizes / B: prioritises +A Z: prioritizings / B: prioritisings + +# prioritizer (level 99) +A Z: prioritizer / B: prioritiser +A Z: prioritizers / B: prioritisers + +# priorization (level 99) +A Z: priorization / B: priorisation +A Z: priorizations / B: priorisations + +# priorize (level 99) +A Z: priorize / B: priorise +A Z: priorized / B: priorised +A Z: priorizing / B: priorising +A Z: priorizes / B: priorises + +# privatization (level 20) +A Z: privatization / B: privatisation +A Z: privatizations / B: privatisations +A Z: privatization's / B: privatisation's + +# privatize (level 35) +A Z: privatize / B: privatise +A Z: privatized / B: privatised +A Z: privatizing / B: privatising +A Z: privatizes / B: privatises + +# privatizer (level 80) +A Z: privatizer / B: privatiser +A Z: privatizers / B: privatisers + +# prizable (level 80) +A C: prizable / B: prisable + +# prize (level 20) +A B: prize | reward +A B: prizes | reward +A B: prize's | reward +A B: prizer | (-) reward +A B: prizers | (-) reward +A B: prized | (-) reward +A B: prizing | (-) reward +A C: prize / B: prise | otherwise +A C: prized / B: prised | otherwise +A C: prizing / B: prising | otherwise +A C: prizes / B: prises | otherwise +A C: prizer / B: priser | (-) otherwise +A C: prize's / B: prise's | (-) otherwise +A C: prizers / B: prisers | (-) otherwise + +# proadvertizing (level 95) +A Z: proadvertizing / B: proadvertising + +# problemize (level 95) +A Z: problemize / B: problemise +A Z: problemizes / B: problemises + +# processionize (level 95) +A Z: processionize / B: processionise +A Z: processionizes / B: processionises + +# Procrusteanize (level 95) +A Z: Procrusteanize / B: Procrusteanise +A Z: Procrusteanizes / B: Procrusteanises +A Z: Procrusteanize's / B: Procrusteanise's + +# proctodeal (level 80) +A: proctodeal / B: proctodaeal + +# proctodeum (level 80) +A: proctodeum / B: proctodaeum +A: proctodea / B: proctodaea +A: proctodeums / B: proctodaeums +A: proctodeum's / B: proctodaeum's + +# proctorization (level 95) +A Z: proctorization / B: proctorisation +A Z: proctorizations / B: proctorisations +A Z: proctorization's / B: proctorisation's + +# proctorize (level 80) +A Z: proctorize / B: proctorise +A Z: proctorized / B: proctorised +A Z: proctorizing / B: proctorising +A Z: proctorizes / B: proctorises + +# prodigalize (level 80) +A Z: prodigalize / B: prodigalise +A Z: prodigalized / B: prodigalised +A Z: prodigalizing / B: prodigalising +A Z: prodigalizes / B: prodigalises + +# productize (level 99) +A Z: productize / B: productise +A Z: productized / B: productised +A Z: productizing / B: productising +A Z: productizes / B: productises + +# productizer (level 99) +A Z: productizer / B: productiser +A Z: productizers / B: productisers + +# proemium (level 80) +A: proemium / B: prooemium + +# profanize (level 95) +A Z: profanize / B: profanise +A Z: profanizes / B: profanises + +# profer (level 95) +A: profer / B: profre + +# professionalization (level 55) +A Z: professionalization / B: professionalisation +A Z: professionalizations / B: professionalisations +A Z: professionalization's / B: professionalisation's + +# professionalize (level 55) +A Z: professionalize / B: professionalise +A Z: professionalized / B: professionalised +A Z: professionalizing / B: professionalising +A Z: professionalizes / B: professionalises + +# professionize (level 95) +A Z: professionize / B: professionise +A Z: professionizes / B: professionises + +# program (level 10) +A C D: program / B Dv: programme | +A C D: programs / B Dv: programmes | +A C D: program's / B Dv: programme's | +A Av B C: program / AV BV: programme | +A AV B: programmed / Av: programed | +A AV B: programming / Av: programing | +A Av B C: programs / AV BV: programmes | +A Av B: program | computer program +A B: programmed / Av: programed | computer program +A B: programming / Av: programing | computer program +A Av B: programs | computer program +A Av B: program's | computer program + +# programmer (level 10) +A B: programmer / AV: programer +A B: programmers / AV: programers +A B: programmer's / AV: programer's + +# proindustrialization (level 95) +A Z: proindustrialization / B: proindustrialisation + +# projectization (level 80) +A Z: projectization / B: projectisation +A Z: projectizations / B: projectisations + +# proletarianization (level 80) +A Z: proletarianization / B: proletarianisation +A Z: proletarianizations / B: proletarianisations +A Z: proletarianization's / B: proletarianisation's + +# proletarianize (level 80) +A Z: proletarianize / B: proletarianise +A Z: proletarianized / B: proletarianised +A Z: proletarianizing / B: proletarianising +A Z: proletarianizes / B: proletarianises + +# proletarize (level 95) +A Z: proletarize / B: proletarise + +# proletarized (level 95) +A Z: proletarized / B: proletarised + +# proletarizing (level 95) +A Z: proletarizing / B: proletarising + +# prologize (level 70) +A Z: prologize / B: prologise +A Z: prologized / B: prologised +A Z: prologizing / B: prologising +A Z: prologizes / B: prologises + +# prologue (level 35) +A B: prologue / AV: prolog +A B: prologues / AV: prologs +A B: prologue's / AV: prolog's + +# prologuize (level 70) +A Z: prologuize / B: prologuise +A Z: prologuized / B: prologuised +A Z: prologuizing / B: prologuising +A Z: prologuizes / B: prologuises + +# prologuizer (level 95) +A Z: prologuizer / B: prologuiser +A Z: prologuizers / B: prologuisers +A Z: prologuizer's / B: prologuiser's + +# prolusionize (level 95) +A Z: prolusionize / B: prolusionise +A Z: prolusionizes / B: prolusionises + +# pronominalization (level 80) +A Z: pronominalization / B: pronominalisation + +# pronominalize (level 95) +A Z: pronominalize / B: pronominalise + +# propagandize (level 40) +A Z: propagandize / B: propagandise +A Z: propagandized / B: propagandised +A Z: propagandizing / B: propagandising +A Z: propagandizes / B: propagandises + +# propellant (level 50) +_: propellant / _V: propellent +_: propellants / _V: propellents +_: propellant's / _V: propellent's + +# prophetize (level 95) +A Z: prophetize / B: prophetise +A Z: prophetizes / B: prophetises + +# propositionize (level 95) +A Z: propositionize / B: propositionise +A Z: propositionizes / B: propositionises + +# propretor (level 70) +A: propretor / B: propraetor +A: propretors / B: propraetors +A: propretor's / B: propraetor's + +# propretorial (level 80) +A: propretorial / B: propraetorial + +# propretorian (level 80) +A: propretorian / B: propraetorian + +# propylitization (level 80) +A Z: propylitization / B: propylitisation +A Z: propylitizations / B: propylitisations + +# propylitize (level 80) +A Z: propylitize / B: propylitise +A Z: propylitized / B: propylitised +A Z: propylitizing / B: propylitising +A Z: propylitizes / B: propylitises + +# proselytization (level 70) +A Z: proselytization / B: proselytisation +A Z: proselytizations / B: proselytisations +A Z: proselytization's / B: proselytisation's + +# proselytize (level 40) +A Z: proselytize / B: proselytise +A Z: proselytized / B: proselytised +A Z: proselytizing / B: proselytising +A Z: proselytizes / B: proselytises + +# proselytizer (level 55) +A Z: proselytizer / B: proselytiser +A Z: proselytizers / B: proselytisers +A Z: proselytizer's / B: proselytiser's + +# proseuche (level 80) +A: proseuche / B: proseuchae + +# prosocele (level 95) +A: prosocele / B: prosocoele + +# prosopopeia (level 70) +A B C: prosopopoeia / AV Cv: prosopopeia +A B C: prosopopoeias / AV Cv: prosopopeias + +# prosopopeial (level 80) +A: prosopopeial / B: prosopopoeial + +# prostatorrhea (level 95) +A: prostatorrhea / B: prostatorrhoea + +# protectionize (level 95) +A Z: protectionize / B: protectionise +A Z: protectionizes / B: protectionises + +# proteide (level 80) +A: proteide / B: proteidae + +# Protestantize (level 80) +A Z: Protestantize / B: Protestantise +A Z: Protestantized / B: Protestantised +A Z: Protestantized's / B: Protestantised's +A Z: Protestantizing / B: Protestantising +A Z: Protestantizes / B: Protestantises +A Z: Protestantize's / B: Protestantise's +A Z: Protestantizing's / B: Protestantising's + +# protester (level 35) +A B: protester / Av Bv: protestor +A B: protesters / Av Bv: protestors +A B: protester's / Av Bv: protestor's + +# Prothoenor (level 95) +A: Prothoenor / B: Prothoaenor +A: Prothoenor's / B: Prothoaenor's + +# protoarcheology (level 95) +A: protoarcheology / B: protoarchaeology + +# protocol (level 80) +A: protocoled / B: protocolled +A: protocoling / B: protocolling + +# protocolization (level 95) +A Z: protocolization / B: protocolisation +A Z: protocolizations / B: protocolisations +A Z: protocolization's / B: protocolisation's + +# protocolize (level 80) +A Z: protocolize / B: protocolise +A Z: protocolized / B: protocolised +A Z: protocolizing / B: protocolising +A Z: protocolizes / B: protocolises + +# proverbialize (level 80) +A Z: proverbialize / B: proverbialise +A Z: proverbialized / B: proverbialised +A Z: proverbializing / B: proverbialising +A Z: proverbializes / B: proverbialises + +# proverbize (level 95) +A Z: proverbize / B: proverbise +A Z: proverbizes / B: proverbises + +# provincialization (level 70) +A Z: provincialization / B: provincialisation +A Z: provincializations / B: provincialisations +A Z: provincialization's / B: provincialisation's + +# provincialize (level 80) +A Z: provincialize / B: provincialise +A Z: provincialized / B: provincialised +A Z: provincializing / B: provincialising +A Z: provincializes / B: provincialises + +# Prussianization (level 80) +A Z: Prussianization / B: Prussianisation +A Z: Prussianizations / B: Prussianisations +A Z: Prussianization's / B: Prussianisation's +A Z: prussianization / B: prussianisation +A Z: prussianization's / B: prussianisation's + +# Prussianize (level 80) +A Z: Prussianize / B: Prussianise +A Z: Prussianized / B: Prussianised +A Z: Prussianizing / B: Prussianising +A Z: Prussianizes / B: Prussianises +A Z: prussianize / B: prussianise +A Z: prussianized / B: prussianised +A Z: prussianizing / B: prussianising +A Z: prussianizes / B: prussianises + +# Prussianizer (level 80) +A Z: Prussianizer / B: Prussianiser +A Z: Prussianizers / B: Prussianisers +A Z: Prussianizer's / B: Prussianiser's +A Z: prussianizer / B: prussianiser +A Z: prussianizer's / B: prussianiser's + +# psalmodize (level 80) +A Z: psalmodize / B: psalmodise +A Z: psalmodized / B: psalmodised +A Z: psalmodizing / B: psalmodising +A Z: psalmodizes / B: psalmodises + +# pseudelephant (level 95) +A: pseudelephant / B: pseudoelephant + +# pseudembryo (level 95) +A: pseudembryo / B: pseudoembryo + +# pseudembryonic (level 95) +A: pseudembryonic / B: pseudoembryonic + +# pseudesthesia (level 80) +A: pseudesthesia / B: pseudaesthesia + +# pseudhemal (level 95) +A: pseudhemal / B: pseudhaemal + +# pseudoanemia (level 95) +A: pseudoanemia / B: pseudoanaemia +A: pseudoanemias / B: pseudoanaemias +A: pseudoanemia's / B: pseudoanaemia's + +# pseudoanemic (level 95) +A: pseudoanemic / B: pseudoanaemic +A: pseudoanemics / B: pseudoanaemics + +# pseudocele (level 95) +A: pseudocele / B: pseudocoele + +# pseudocelom (level 80) +A: pseudocelom / B: pseudocoelom + +# pseudoedema (level 95) +A: pseudoedema / B: pseudooedema +A: pseudoedemas / B: pseudooedemas +A: pseudoedema's / B: pseudooedema's + +# pseudographize (level 95) +A Z: pseudographize / B: pseudographise +A Z: pseudographizes / B: pseudographises + +# pseudolunule (level 95) +A: pseudolunule / B: pseudolunulae + +# psychoanalyze (level 40) +A C: psychoanalyze / B: psychoanalyse +A C: psychoanalyzed / B: psychoanalysed +A C: psychoanalyzing / B: psychoanalysing +A C: psychoanalyzes / B: psychoanalyses +A B: psychoanalyses | [psychoanalysis] + +# psychoanalyzer (level 95) +A C: psychoanalyzer / B: psychoanalyser +A C: psychoanalyzers / B: psychoanalysers +A C: psychoanalyzer's / B: psychoanalyser's + +# psychologization (level 99) +A Z: psychologization / B: psychologisation + +# psychologize (level 70) +A Z: psychologize / B: psychologise +A Z: psychologized / B: psychologised +A Z: psychologizing / B: psychologising +A Z: psychologizes / B: psychologises + +# Ptolemean (level 80) +A: Ptolemean / B: Ptolemaean +A: Ptolemean's / B: Ptolemaean's + +# ptyalize (level 80) +A Z: ptyalize / B: ptyalise +A Z: ptyalized / B: ptyalised +A Z: ptyalizing / B: ptyalising +A Z: ptyalizes / B: ptyalises + +# publice (level 95) +A: publice / B: publicae + +# publicize (level 20) +A Z: publicize / B: publicise +A Z: publicized / B: publicised +A Z: publicizing / B: publicising +A Z: publicizes / B: publicises + +# puebloization (level 95) +A Z: puebloization / B: puebloisation +A Z: puebloizations / B: puebloisations +A Z: puebloization's / B: puebloisation's + +# puebloize (level 95) +A Z: puebloize / B: puebloise +A Z: puebloizes / B: puebloises + +# puers (level 80) +A: puers / B: pures + +# pulicide (level 80) +A: pulicide / B: pulicidae + +# Pullmanize (level 95) +A Z: Pullmanize / B: Pullmanise +A Z: Pullmanizes / B: Pullmanises +A Z: Pullmanize's / B: Pullmanise's + +# pulpitize (level 95) +A Z: pulpitize / B: pulpitise +A Z: pulpitizes / B: pulpitises + +# pulverizable (level 80) +A Z: pulverizable / B: pulverisable +A Z: pulverizabler / B: pulverisabler +A Z: pulverizables / B: pulverisables +A Z: pulverizablest / B: pulverisablest +A Z: pulverizable's / B: pulverisable's + +# pulverization (level 40) +A Z: pulverization / B: pulverisation +A Z: pulverizations / B: pulverisations +A Z: pulverization's / B: pulverisation's + +# pulverize (level 35) +A Z: pulverize / B: pulverise +A Z: pulverized / B: pulverised +A Z: pulverizing / B: pulverising +A Z: pulverizes / B: pulverises + +# pulverizer (level 80) +A Z: pulverizer / B: pulveriser +A Z: pulverizers / B: pulverisers +A Z: pulverizer's / B: pulveriser's + +# pulvilized (level 95) +A Z: pulvilized / B: pulvilised + +# pummel (level 35) +A: pummeled / B: pummelled +A: pummeling / B: pummelling + +# pummeler (level 99) +A: pummeler / B: pummeller + +# pumpkin (level 35) +_: pumpkin / _-: punkin +_: pumpkins / _-: punkins +_: pumpkin's / _-: punkin's + +# pupilize (level 95) +A Z: pupilize / B: pupilise +A Z: pupilizes / B: pupilises + +# puppetize (level 95) +A Z: puppetize / B: puppetise +A Z: puppetizes / B: puppetises + +# Puritanize (level 80) +A Z: Puritanize / B: Puritanise +A Z: Puritanizes / B: Puritanises +A Z: Puritanize's / B: Puritanise's +A Z: puritanize / B: puritanise +A Z: puritanized / B: puritanised +A Z: puritanizing / B: puritanising +A Z: puritanizes / B: puritanises + +# Puritanizer (level 95) +A Z: Puritanizer / B: Puritaniser +A Z: Puritanizers / B: Puritanisers +A Z: Puritanizer's / B: Puritaniser's + +# pyemia (level 70) +A: pyemia / B: pyaemia +A: pyemias / B: pyaemias +A: pyemia's / B: pyaemia's + +# pyemic (level 80) +A: pyemic / B: pyaemic + +# pygmean (level 70) +A: pygmean / B: pygmaean + +# pygmy (level 40) +_: pygmy / _V: pigmy +_: pygmies / _V: pigmies +_: pygmy's / _V: pigmy's + +# pyorrhea (level 50) +A C: pyorrhea / B: pyorrhoea +A C: pyorrheas / B: pyorrhoeas +A C: pyorrhea's / B: pyorrhoea's + +# pyorrheal (level 70) +A: pyorrheal / B: pyorrhoeal +A: pyorrhealer / B: pyorrhoealer +A: pyorrhealest / B: pyorrhoealest + +# pyorrheic (level 80) +A: pyorrheic / B: pyorrhoeic + +# pyramidize (level 95) +A Z: pyramidize / B: pyramidise +A Z: pyramidizes / B: pyramidises + +# Pyrenean (level 70) +A: Pyrenean / B: Pyrenaean + +# Pyreneus (level 95) +A: Pyreneus / B: Pyrenaeus +A: Pyreneus's / B: Pyrenaeus's + +# pyridinize (level 95) +A Z: pyridinize / B: pyridinise +A Z: pyridinizes / B: pyridinises + +# pyritization (level 95) +A Z: pyritization / B: pyritisation +A Z: pyritizations / B: pyritisations +A Z: pyritization's / B: pyritisation's + +# pyritize (level 80) +A Z: pyritize / B: pyritise +A Z: pyritized / B: pyritised +A Z: pyritizing / B: pyritising +A Z: pyritizes / B: pyritises + +# pyrolyzable (level 80) +A: pyrolyzable / B: pyrolysable + +# pyrolyzate (level 80) +A: pyrolyzate / B: pyrolysate +A: pyrolyzates / B: pyrolysates +A: pyrolyzate's / B: pyrolysate's + +# pyrolyze (level 70) +A C: pyrolyze / B Cv: pyrolyse +A C: pyrolyzed / B Cv: pyrolysed +A C: pyrolyzing / B Cv: pyrolysing +A C: pyrolyzes / B Cv: pyrolyses +A C: pyrolyze's / B Cv: pyrolyse's + +# pyrolyzer (level 80) +A: pyrolyzer / B: pyrolyser + +# Pythagoreanize (level 95) +A Z: Pythagoreanize / B: Pythagoreanise +A Z: Pythagoreanizes / B: Pythagoreanises +A Z: Pythagoreanize's / B: Pythagoreanise's + +# pythonine (level 95) +A: pythonine / B: pythoninae + +# pythonize (level 95) +A Z: pythonize / B: pythonise +A Z: pythonizes / B: pythonises + +# quadraphonic (level 50) +_: quadraphonic / _V: quadriphonic / _-: quadrophonic +_: quadraphonics / _V: quadriphonics / _-: quadrophonics | -- noun plural but singular in construction + +# quahog (level 50) +_: quahog / _V: quahaug +_: quahogs / _V: quahaugs +_: quahog's / _V: quahaug's + +# Quakerization (level 95) +A Z: Quakerization / B: Quakerisation +A Z: Quakerizations / B: Quakerisations +A Z: Quakerization's / B: Quakerisation's + +# Quakerize (level 95) +A Z: Quakerize / B: Quakerise +A Z: Quakerizes / B: Quakerises +A Z: Quakerize's / B: Quakerise's + +# quantization (level 70) +A Z: quantization / B: quantisation +A Z: quantizations / B: quantisations +A Z: quantization's / B: quantisation's + +# quantize (level 70) +A Z: quantize / B: quantise +A Z: quantized / B: quantised +A Z: quantizing / B: quantising +A Z: quantizes / B: quantises + +# quantizer (level 80) +A Z: quantizer / B: quantiser +A Z: quantizers / B: quantisers +A Z: quantizer's / B: quantiser's + +# quarrel (level 35) +A: quarreled / B: quarrelled +A: quarreling / B: quarrelling + +# quarreler (level 60) +A: quarreler / B: quarreller +A: quarrelers / B: quarrellers +A: quarreler's / B: quarreller's + +# quarrelous (level 95) +A: quarrelous / B: quarrellous + +# quarterization (level 95) +A Z: quarterization / B: quarterisation +A Z: quarterizations / B: quarterisations +A Z: quarterization's / B: quarterisation's + +# quartet (level 35) +_: quartet / _V: quartette +_: quartets / _V: quartettes +_: quartet's / _V: quartette's + +# quaters (level 80) +A: quaters / B: quatres + +# que (level 95) +A: que / B: quae + +# querele (level 95) +A: querele / B: querelae + +# questionary (level 70) +A: questionary / B: quaestionary +A: questionaries / B: quaestionaries + +# questor (level 70) +A B: quaestor / AV: questor +A B: quaestors / AV: questors +A B: quaestor's / AV: questor's + +# questorial (level 80) +A: questorial / B: quaestorial + +# questorship (level 80) +A: questorship / B: quaestorship +A: questorship's / B: quaestorship's + +# queuing (level 20) +A B: queuing / Bv: queueing + +# quininize (level 95) +A Z: quininize / B: quininise +A Z: quininizes / B: quininises + +# quintessentialize (level 80) +A Z: quintessentialize / B: quintessentialise +A Z: quintessentialized / B: quintessentialised +A Z: quintessentializing / B: quintessentialising +A Z: quintessentializes / B: quintessentialises + +# quintet (level 35) +_: quintet / _-: quintette +_: quintets / _-: quintettes +_: quintet's / _-: quintette's + +# raccoon (level 35) +A Av B: raccoon / AV Bv: racoon +A Av B: raccoon's / AV Bv: racoon's +A B: raccoon / Av Bv: raccoons / AV Bv: racoons / AV Bv: racoon | +## Ox does not say anything about the proper plural forum. I am going +## to assume it the same as the singular + +# racemization (level 80) +A Z: racemization / B: racemisation +A Z: racemizations / B: racemisations +A Z: racemization's / B: racemisation's + +# racemize (level 80) +A Z: racemize / B: racemise +A Z: racemized / B: racemised +A Z: racemizing / B: racemising +A Z: racemizes / B: racemises + +# racialization (level 70) +A Z: racialization / B: racialisation +A Z: racializations / B: racialisations +A Z: racialization's / B: racialisation's + +# racialize (level 70) +A Z: racialize / B: racialise +A Z: racializes / B: racialises + +# racket (level 20) +A B Cv Dv: racket / Av Bv C D: racquet | :1 +A B Cv Dv: rackets / Av Bv C D: racquets | :1 +A B Cv Dv: racket's / Av Bv C D: racquet's | :1 +A B: racket | :2 +A B: rackets | :2 +A B: racket's | :2 + +# Radborne (level 95) +A: Radborne / B: Radbourne +A: Radborne's / B: Radbourne's + +# radialization (level 80) +A Z: radialization / B: radialisation +A Z: radializations / B: radialisations +A Z: radialization's / B: radialisation's + +# radialize (level 80) +A Z: radialize / B: radialise +A Z: radialized / B: radialised +A Z: radializing / B: radialising +A Z: radializes / B: radialises + +# radicalization (level 60) +A Z: radicalization / B: radicalisation +A Z: radicalizations / B: radicalisations +A Z: radicalization's / B: radicalisation's + +# radicalize (level 55) +A Z: radicalize / B: radicalise +A Z: radicalized / B: radicalised +A Z: radicalizing / B: radicalising +A Z: radicalizes / B: radicalises + +# radiopasteurization (level 99) +A Z: radiopasteurization / B: radiopasteurisation + +# radiosensitize (level 80) +A Z: radiosensitize / B: radiosensitise +A Z: radiosensitized / B: radiosensitised +A Z: radiosensitizing / B: radiosensitising +A Z: radiosensitizes / B: radiosensitises + +# radiosterilization (level 95) +A Z: radiosterilization / B: radiosterilisation + +# radiosterilize (level 95) +A Z: radiosterilize / B: radiosterilise +A Z: radiosterilized / B: radiosterilised +A Z: radiosterilizing / B: radiosterilising +A Z: radiosterilizes / B: radiosterilises + +# radiumization (level 95) +A Z: radiumization / B: radiumisation +A Z: radiumizations / B: radiumisations +A Z: radiumization's / B: radiumisation's + +# radiumize (level 95) +A Z: radiumize / B: radiumise +A Z: radiumizes / B: radiumises + +# rajah (level 50) +_: rajah / _v: raja +_: rajah's / _v: raja's +_: rajahes / _v: rajas + +# Rame (level 95) +A: Rame / B: Ramae +A: Rame's / B: Ramae's + +# ramekin (level 55) +_: ramekin / _V: ramequin +_: ramekins / _V: ramequins +_: ramekin's / _V: ramequin's + +# rampier (level 80) +A: rampier / B: rampire + +# rancor (level 35) +A Cv DV: rancor / B C D: rancour +A Cv DV: rancors / B C D: rancours +A Cv DV: rancor's / B C D: rancour's + +# randomization (level 60) +A Z: randomization / B: randomisation +A Z: randomizations / B: randomisations +A Z: randomization's / B: randomisation's + +# randomize (level 50) +A Z: randomize / B: randomise +A Z: randomized / B: randomised +A Z: randomizing / B: randomising +A Z: randomizes / B: randomises + +# randomizer (level 80) +A Z: randomizer / B: randomiser +A Z: randomizers / B: randomisers +A Z: randomizer's / B: randomiser's + +# ranee (level 55) +_: ranee / _v: rani +_: ranees / _v: ranis +_: ranee's / _v: rani's + +# raphe (level 80) +A: raphe / B: raphae + +# raphide (level 80) +A: raphide / B: raphidae + +# rapturize (level 80) +A Z: rapturize / B: rapturise +A Z: rapturized / B: rapturised +A Z: rapturizing / B: rapturising +A Z: rapturizes / B: rapturises + +# rascalize (level 95) +A Z: rascalize / B: rascalise +A Z: rascalizes / B: rascalises + +# rationalizable (level 80) +A Z: rationalizable / B: rationalisable +A Z: rationalizables / B: rationalisables +A Z: rationalizable's / B: rationalisable's + +# rationalization (level 35) +A Z: rationalization / B: rationalisation +A Z: rationalizations / B: rationalisations +A Z: rationalization's / B: rationalisation's + +# rationalize (level 35) +A Z: rationalize / B: rationalise +A Z: rationalized / B: rationalised +A Z: rationalizing / B: rationalising +A Z: rationalizes / B: rationalises + +# rationalizer (level 70) +A Z: rationalizer / B: rationaliser +A Z: rationalizers / B: rationalisers +A Z: rationalizer's / B: rationaliser's + +# ratite (level 70) +A: ratite / B: ratitae + +# ratlines (level 60) +_: ratlines / _-: ratlins +_: ratline's / _-: ratlin's +_: ratline / _-: ratlin | o: usually plural + +# ravel (level 35) +A: raveled / B: ravelled | +A: raveling / B: ravelling | +A Cv: raveling / B C: ravelling | +A Cv: ravelings / B C: ravellings | +A Cv: raveling's / B C: ravelling's | + +# raveler (level 70) +A: raveler / B: raveller +A: ravelers / B: ravellers +A: raveler's / B: raveller's + +# reacclimatization (level 95) +A Z: reacclimatization / B: reacclimatisation +A Z: reacclimatizations / B: reacclimatisations +A Z: reacclimatization's / B: reacclimatisation's + +# reacclimatize (level 80) +A Z: reacclimatize / B: reacclimatise +A Z: reacclimatized / B: reacclimatised +A Z: reacclimatizing / B: reacclimatising +A Z: reacclimatizes / B: reacclimatises + +# reactualize (level 95) +A Z: reactualize / B: reactualise +A Z: reactualizes / B: reactualises + +# readvertize (level 80) +A Z: readvertize / B: readvertise +A Z: readvertized / B: readvertised +A Z: readvertizing / B: readvertising + +# realisticize (level 95) +A Z: realisticize / B: realisticise +A Z: realisticizes / B: realisticises + +# realizability (level 80) +A Z: realizability / B: realisability +A Z: realizabilities / B: realisabilities +A Z: realizability's / B: realisability's + +# realizable (level 50) +A Z: realizable / B: realisable +A Z: realizabler / B: realisabler +A Z: realizables / B: realisables +A Z: realizablest / B: realisablest + +# realizableness (level 95) +A Z: realizableness / B: realisableness +A Z: realizableness's / B: realisableness's + +# realizably (level 95) +A Z: realizably / B: realisably +A Z: realizablies / B: realisablies + +# realization (level 20) +A Z: realization / B: realisation +A Z: realizations / B: realisations +A Z: realization's / B: realisation's + +# realize (level 10) +A Z: realize / B: realise +A Z: realized / B: realised +A Z: realizing / B: realising +A Z: realizes / B: realises +A Z: realizings / B: realisings +A Z: realizing's / B: realising's + +# realizer (level 80) +A Z: realizer / B: realiser +A Z: realizers / B: realisers +A Z: realizer's / B: realiser's + +# realizingly (level 95) +A Z: realizingly / B: realisingly + +# reanalyze (level 60) +A C: reanalyze / B: reanalyse +A C: reanalyzed / B: reanalysed +A C: reanalyzing / B: reanalysing +A C: reanalyzes / B: reanalyses +A B: reanalyses | [reanalysis] + +# reanalyzer (level 99) +A C: reanalyzer / B: reanalyser +A C: reanalyzers / B: reanalysers + +# reanimalize (level 95) +A Z: reanimalize / B: reanimalise +A Z: reanimalizes / B: reanimalises + +# reapologize (level 95) +A Z: reapologize / B: reapologise +A Z: reapologizes / B: reapologises + +# reauthorization (level 70) +A Z: reauthorization / B: reauthorisation +A Z: reauthorizations / B: reauthorisations +A Z: reauthorization's / B: reauthorisation's + +# reauthorize (level 60) +A Z: reauthorize / B: reauthorise +A Z: reauthorizes / B: reauthorises + +# rebaptization (level 95) +A Z: rebaptization / B: rebaptisation +A Z: rebaptizations / B: rebaptisations +A Z: rebaptization's / B: rebaptisation's + +# rebaptize (level 70) +A Z: rebaptize / B: rebaptise +A Z: rebaptized / B: rebaptised +A Z: rebaptizing / B: rebaptising +A Z: rebaptizes / B: rebaptises + +# rebourbonize (level 95) +A Z: rebourbonize / B: rebourbonise +A Z: rebourbonizes / B: rebourbonises + +# rebrutalize (level 95) +A Z: rebrutalize / B: rebrutalise +A Z: rebrutalizes / B: rebrutalises + +# recanalization (level 80) +A Z: recanalization / B: recanalisation + +# recapitalization (level 55) +A Z: recapitalization / B: recapitalisation +A Z: recapitalizations / B: recapitalisations +A Z: recapitalization's / B: recapitalisation's + +# recapitalize (level 55) +A Z: recapitalize / B: recapitalise +A Z: recapitalized / B: recapitalised +A Z: recapitalizing / B: recapitalising +A Z: recapitalizes / B: recapitalises + +# recarbonization (level 95) +A Z: recarbonization / B: recarbonisation +A Z: recarbonizations / B: recarbonisations +A Z: recarbonization's / B: recarbonisation's + +# recarbonize (level 95) +A Z: recarbonize / B: recarbonise +A Z: recarbonizes / B: recarbonises + +# recarbonizer (level 95) +A Z: recarbonizer / B: recarboniser +A Z: recarbonizers / B: recarbonisers + +# recategorized (level 95) +A Z: recategorized / B: recategorised + +# recausticize (level 95) +A Z: recausticize / B: recausticise +A Z: recausticizes / B: recausticises + +# recentralization (level 80) +A Z: recentralization / B: recentralisation +A Z: recentralizations / B: recentralisations +A Z: recentralization's / B: recentralisation's + +# recentralize (level 95) +A Z: recentralize / B: recentralise +A Z: recentralizes / B: recentralises + +# recercele (level 95) +A: recercele / B: recercelae + +# reciprocalize (level 95) +A Z: reciprocalize / B: reciprocalise +A Z: reciprocalizes / B: reciprocalises + +# recivilization (level 95) +A Z: recivilization / B: recivilisation +A Z: recivilizations / B: recivilisations +A Z: recivilization's / B: recivilisation's + +# recivilize (level 95) +A Z: recivilize / B: recivilise +A Z: recivilizes / B: recivilises + +# recognizability (level 80) +A Z: recognizability / B: recognisability + +# recognizable (level 20) +A Z: recognizable / B: recognisable +A Z: recognizabler / B: recognisabler +A Z: recognizablest / B: recognisablest + +# recognizably (level 40) +A Z: recognizably / B: recognisably + +# recognizance (level 50) +A Z: recognizance / B: recognisance +A Z: recognizances / B: recognisances +A Z: recognizance's / B: recognisance's + +# recognize (level 10) +A Z: recognize / B: recognise +A Z: recognized / B: recognised +A Z: recognizing / B: recognising +A Z: recognizes / B: recognises + +# recognizedly (level 95) +A Z: recognizedly / B: recognisedly +A Z: recognizedlies / B: recognisedlies + +# recognizer (level 50) +A Z: recognizer / B: recogniser +A Z: recognizers / B: recognisers +A Z: recognizer's / B: recogniser's + +# recognizingly (level 95) +A Z: recognizingly / B: recognisingly +A Z: recognizinglies / B: recognisinglies + +# recolonization (level 60) +A Z: recolonization / B: recolonisation +A Z: recolonizations / B: recolonisations +A Z: recolonization's / B: recolonisation's + +# recolonize (level 60) +A Z: recolonize / B: recolonise +A Z: recolonized / B: recolonised +A Z: recolonizing / B: recolonising +A Z: recolonizes / B: recolonises + +# recolor (level 60) +A DV: recolor / B D: recolour +A DV: recolored / B D: recoloured +A DV: recoloring / B D: recolouring +A DV: recolors / B D: recolours +A DV: recolor's / B D: recolour's + +# recoloration (level 95) +A: recoloration / B: recolouration +A: recolorations / B: recolourations +A: recoloration's / B: recolouration's + +# reconceptualization (level 80) +A Z: reconceptualization / B: reconceptualisation + +# reconceptualizing (level 80) +A Z: reconceptualizing / B: reconceptualising + +# reconnoiter (level 50) +A Cv: reconnoiter / B C: reconnoitre +A Cv: reconnoitered / B C: reconnoitred +A Cv: reconnoitering / B C: reconnoitring +A Cv: reconnoiters / B C: reconnoitres +A Cv: reconnoiter's / B C: reconnoitre's + +# reconnoiterer (level 70) +A: reconnoiterer / B: reconnoitrer +A: reconnoiterers / B: reconnoitrers +A: reconnoiterer's / B: reconnoitrer's + +# recriticize (level 95) +A Z: recriticize / B: recriticise +A Z: recriticizes / B: recriticises + +# recrystallization (level 70) +A Z: recrystallization / B: recrystallisation +A Z: recrystallizations / B: recrystallisations +A Z: recrystallization's / B: recrystallisation's + +# recrystallize (level 60) +A Z: recrystallize / B: recrystallise +A Z: recrystallized / B: recrystallised +A Z: recrystallizing / B: recrystallising +A Z: recrystallizes / B: recrystallises + +# redial (level 60) +A C: redialed / B Cv: redialled +A C: redialing / B Cv: redialling + +# redialer (level 99) +A: redialer / B: redialler + +# redisseize (level 95) +A Z: redisseize / B: redisseise + +# redisseizin (level 95) +A Z: redisseizin / B: redisseisin + +# reedify (level 80) +A: reedify / B: reaedify +A: reedified / B: reaedified +A: reedifying / B: reaedifying +A: reedifies / B: reaedifies + +# reemphasize (level 50) +A Z: reemphasize / B: reemphasise +A Z: reemphasized / B: reemphasised +A Z: reemphasizing / B: reemphasising +A Z: reemphasizes / B: reemphasises + +# reemphasizer (level 99) +A Z: reemphasizer / B: reemphasiser +A Z: reemphasizers / B: reemphasisers + +# reentrance (level 70) +A: reentrance / B: reaentrance +A: reentrance's / B: reaentrance's + +# reexportation (level 80) +A: reexportation / B: reaexportation +A: reexportation's / B: reaexportation's + +# reexporter (level 95) +A: reexporter / B: reaexporter +A: reexporter's / B: reaexporter's + +# refavor (level 95) +A: refavor / B: refavour +A: refavors / B: refavours +A: refavor's / B: refavour's + +# refertilization (level 95) +A Z: refertilization / B: refertilisation +A Z: refertilizations / B: refertilisations +A Z: refertilization's / B: refertilisation's + +# refertilize (level 95) +A Z: refertilize / B: refertilise +A Z: refertilizes / B: refertilises + +# reflectorize (level 80) +A Z: reflectorize / B: reflectorise +A Z: reflectorized / B: reflectorised +A Z: reflectorizing / B: reflectorising +A Z: reflectorizes / B: reflectorises +A Z: reflectorize's / B: reflectorise's + +# reforestization (level 95) +A Z: reforestization / B: reforestisation +A Z: reforestization's / B: reforestisation's + +# reforestize (level 95) +A Z: reforestize / B: reforestise +A Z: reforestizes / B: reforestises + +# reformades (level 80) +A: reformades / B: reformadoes + +# refuel (level 35) +A: refueled / B: refuelled +A: refueling / B: refuelling + +# regalize (level 95) +A Z: regalize / B: regalise +A Z: regalizes / B: regalises + +# regalvanization (level 95) +A Z: regalvanization / B: regalvanisation +A Z: regalvanizations / B: regalvanisations +A Z: regalvanization's / B: regalvanisation's + +# regalvanize (level 95) +A Z: regalvanize / B: regalvanise +A Z: regalvanizes / B: regalvanises + +# reges (level 80) +A: reges / B: regoes + +# regionalization (level 80) +A Z: regionalization / B: regionalisation +A Z: regionalizations / B: regionalisations +A Z: regionalization's / B: regionalisation's + +# regionalize (level 80) +A Z: regionalize / B: regionalise +A Z: regionalized / B: regionalised +A Z: regionalizing / B: regionalising +A Z: regionalizes / B: regionalises + +# regularization (level 55) +A Z: regularization / B: regularisation +A Z: regularizations / B: regularisations +A Z: regularization's / B: regularisation's + +# regularize (level 50) +A Z: regularize / B: regularise +A Z: regularized / B: regularised +A Z: regularizing / B: regularising +A Z: regularizes / B: regularises + +# regularizer (level 80) +A Z: regularizer / B: regulariser +A Z: regularizers / B: regularisers +A Z: regularizer's / B: regulariser's + +# regulize (level 80) +A Z: regulize / B: regulise +A Z: regulized / B: regulised +A Z: regulizing / B: regulising +A Z: regulizes / B: regulises + +# reharmonization (level 95) +A Z: reharmonization / B: reharmonisation + +# reharmonize (level 95) +A Z: reharmonize / B: reharmonise +A Z: reharmonizes / B: reharmonises + +# Rehm (level 95) +A: Rehm / B: Roehm +A: Rehm's / B: Roehm's + +# rehonor (level 95) +A: rehonor / B: rehonour +A: rehonors / B: rehonours +A: rehonor's / B: rehonour's + +# rehumanization (level 95) +A Z: rehumanization / B: rehumanisation +A Z: rehumanization's / B: rehumanisation's + +# rehumanize (level 80) +A Z: rehumanize / B: rehumanise +A Z: rehumanizes / B: rehumanises + +# rehybridize (level 95) +A Z: rehybridize / B: rehybridise +A Z: rehybridizes / B: rehybridises + +# reindustrialization (level 80) +A Z: reindustrialization / B: reindustrialisation +A Z: reindustrializations / B: reindustrialisations + +# reindustrialize (level 80) +A Z: reindustrialize / B: reindustrialise +A Z: reindustrialized / B: reindustrialised +A Z: reindustrializing / B: reindustrialising +A Z: reindustrializes / B: reindustrialises + +# reinforce (level 35) +A B: reinforce / AV: reenforce +A B: reinforced / AV: reenforced +A B: reinforcing / AV: reenforcing +A B: reinforces / AV: reenforces + +# reinforceable (level 80) +_: reinforceable / _V: reenforceable + +# reinitialization (level 95) +A Z: reinitialization / B: reinitialisation + +# reinitialize (level 50) +A Z: reinitialize / B: reinitialise +A Z: reinitialized / B: reinitialised +A Z: reinitializing / B: reinitialising +A Z: reinitializes / B: reinitialises + +# reitemize (level 95) +A Z: reitemize / B: reitemise +A Z: reitemizes / B: reitemises + +# rejuvenize (level 80) +A Z: rejuvenize / B: rejuvenise +A Z: rejuvenized / B: rejuvenised +A Z: rejuvenizing / B: rejuvenising +A Z: rejuvenizes / B: rejuvenises + +# relabel (level 50) +A: relabeled / B: relabelled +A: relabeling / B: relabelling + +# relabeler (level 99) +A: relabeler / B: relabeller +A: relabelers / B: relabellers + +# relativization (level 80) +A Z: relativization / B: relativisation +A Z: relativizations / B: relativisations +A Z: relativization's / B: relativisation's + +# relativize (level 70) +A Z: relativize / B: relativise +A Z: relativized / B: relativised +A Z: relativizing / B: relativising +A Z: relativizes / B: relativises + +# religionize (level 80) +A Z: religionize / B: religionise +A Z: religionized / B: religionised +A Z: religionizing / B: religionising +A Z: religionizes / B: religionises + +# remagnetization (level 95) +A Z: remagnetization / B: remagnetisation +A Z: remagnetizations / B: remagnetisations +A Z: remagnetization's / B: remagnetisation's + +# remagnetize (level 95) +A Z: remagnetize / B: remagnetise +A Z: remagnetizes / B: remagnetises + +# rematerialize (level 70) +A Z: rematerialize / B: rematerialise +A Z: rematerialized / B: rematerialised +A Z: rematerializes / B: rematerialises + +# rememorize (level 95) +A Z: rememorize / B: rememorise +A Z: rememorizes / B: rememorises + +# remilitarization (level 80) +A Z: remilitarization / B: remilitarisation +A Z: remilitarizations / B: remilitarisations +A Z: remilitarization's / B: remilitarisation's + +# remilitarize (level 70) +A Z: remilitarize / B: remilitarise +A Z: remilitarized / B: remilitarised +A Z: remilitarizing / B: remilitarising +A Z: remilitarizes / B: remilitarises + +# remineralization (level 80) +A Z: remineralization / B: remineralisation +A Z: remineralizations / B: remineralisations +A Z: remineralization's / B: remineralisation's + +# remineralize (level 80) +A Z: remineralize / B: remineralise +A Z: remineralized / B: remineralised +A Z: remineralizing / B: remineralising +A Z: remineralizes / B: remineralises + +# remobilization (level 80) +A Z: remobilization / B: remobilisation +A Z: remobilizations / B: remobilisations +A Z: remobilization's / B: remobilisation's + +# remobilize (level 80) +A Z: remobilize / B: remobilise +A Z: remobilizes / B: remobilises + +# remodel (level 35) +A: remodeled / B: remodelled +A: remodeling / B: remodelling + +# remold (level 55) +A Cv: remold / B C: remould +A Cv: remolded / B C: remoulded +A Cv: remolding / B C: remoulding +A Cv: remolds / B C: remoulds + +# remonetization (level 80) +A Z: remonetization / B: remonetisation +A Z: remonetizations / B: remonetisations +A Z: remonetization's / B: remonetisation's + +# remonetize (level 70) +A Z: remonetize / B: remonetise +A Z: remonetized / B: remonetised +A Z: remonetizing / B: remonetising +A Z: remonetizes / B: remonetises + +# remoralization (level 80) +A Z: remoralization / B: remoralisation +A Z: remoralizations / B: remoralisations + +# remoralize (level 80) +A Z: remoralize / B: remoralise +A Z: remoralized / B: remoralised +A Z: remoralizing / B: remoralising +A Z: remoralizes / B: remoralises + +# renationalize (level 70) +A Z: renationalize / B: renationalise +A Z: renationalized / B: renationalised +A Z: renationalizing / B: renationalising +A Z: renationalizes / B: renationalises + +# rencounter (level 70) +A: rencounter / B: rencontre + +# Renferd (level 95) +A: Renferd / B: Renfred +A: Renferd's / B: Renfred's + +# renormalization (level 70) +A Z: renormalization / B: renormalisation +A Z: renormalizations / B: renormalisations +A Z: renormalization's / B: renormalisation's + +# renormalize (level 80) +A Z: renormalize / B: renormalise +A Z: renormalized / B: renormalised +A Z: renormalizing / B: renormalising +A Z: renormalizes / B: renormalises + +# reobjectivization (level 95) +A Z: reobjectivization / B: reobjectivisation +A Z: reobjectivizations / B: reobjectivisations +A Z: reobjectivization's / B: reobjectivisation's + +# reobjectivize (level 95) +A Z: reobjectivize / B: reobjectivise +A Z: reobjectivizes / B: reobjectivises + +# reorganization (level 35) +A Z: reorganization / B: reorganisation +A Z: reorganizations / B: reorganisations +A Z: reorganization's / B: reorganisation's + +# reorganizational (level 80) +A Z: reorganizational / B: reorganisational + +# reorganizationist (level 95) +A Z: reorganizationist / B: reorganisationist +A Z: reorganizationists / B: reorganisationists +A Z: reorganizationist's / B: reorganisationist's + +# reorganize (level 35) +A Z: reorganize / B: reorganise +A Z: reorganized / B: reorganised +A Z: reorganizing / B: reorganising +A Z: reorganizes / B: reorganises + +# reorganizer (level 80) +A Z: reorganizer / B: reorganiser +A Z: reorganizers / B: reorganisers +A Z: reorganizer's / B: reorganiser's + +# reoxidize (level 80) +A Z: reoxidize / B: reoxidise +A Z: reoxidized / B: reoxidised +A Z: reoxidizing / B: reoxidising +A Z: reoxidizes / B: reoxidises + +# reoxygenize (level 95) +A Z: reoxygenize / B: reoxygenise +A Z: reoxygenizes / B: reoxygenises + +# repaganization (level 95) +A Z: repaganization / B: repaganisation +A Z: repaganizations / B: repaganisations +A Z: repaganization's / B: repaganisation's + +# repaganize (level 95) +A Z: repaganize / B: repaganise +A Z: repaganizes / B: repaganises + +# repaganizer (level 95) +A Z: repaganizer / B: repaganiser +A Z: repaganizers / B: repaganisers + +# repatronize (level 95) +A Z: repatronize / B: repatronise +A Z: repatronizes / B: repatronises + +# repellent (level 35) +_: repellent / _V: repellant +_: repellents / _V: repellants +_: repellent's / _V: repellant's + +# repersonalize (level 95) +A Z: repersonalize / B: repersonalise + +# rephosphorization (level 95) +A Z: rephosphorization / B: rephosphorisation +A Z: rephosphorizations / B: rephosphorisations +A Z: rephosphorization's / B: rephosphorisation's + +# rephosphorize (level 95) +A Z: rephosphorize / B: rephosphorise +A Z: rephosphorizes / B: rephosphorises + +# repolymerization (level 95) +A Z: repolymerization / B: repolymerisation +A Z: repolymerizations / B: repolymerisations +A Z: repolymerization's / B: repolymerisation's + +# repolymerize (level 95) +A Z: repolymerize / B: repolymerise +A Z: repolymerizes / B: repolymerises + +# repopularize (level 80) +A Z: repopularize / B: repopularise + +# reprivatization (level 80) +A Z: reprivatization / B: reprivatisation +A Z: reprivatizations / B: reprivatisations +A Z: reprivatization's / B: reprivatisation's + +# reprivatize (level 80) +A Z: reprivatize / B: reprivatise +A Z: reprivatized / B: reprivatised +A Z: reprivatizing / B: reprivatising +A Z: reprivatizes / B: reprivatises + +# reprized (level 40) +A C: reprized / B: reprised + +# reprogram (level 35) +A B: reprogram / Bv: reprogramme +A B: reprograms / Bv: reprogrammes + +# republicanization (level 80) +A Z: republicanization / B: republicanisation +A Z: republicanizations / B: republicanisations +A Z: republicanization's / B: republicanisation's + +# republicanize (level 70) +A Z: republicanize / B: republicanise +A Z: republicanized / B: republicanised +A Z: republicanizing / B: republicanising +A Z: republicanizes / B: republicanises + +# republicanizer (level 95) +A Z: republicanizer / B: republicaniser +A Z: republicanizers / B: republicanisers +A Z: republicanizer's / B: republicaniser's + +# repulverize (level 95) +A Z: repulverize / B: repulverise +A Z: repulverizes / B: repulverises + +# reroyalize (level 95) +A Z: reroyalize / B: reroyalise +A Z: reroyalizes / B: reroyalises + +# reseize (level 80) +A Z: reseize / B: reseise + +# reseizer (level 95) +A Z: reseizer / B: reseiser + +# resensitization (level 95) +A Z: resensitization / B: resensitisation +A Z: resensitizations / B: resensitisations +A Z: resensitization's / B: resensitisation's + +# resensitize (level 80) +A Z: resensitize / B: resensitise +A Z: resensitizes / B: resensitises + +# resepulcher (level 95) +A: resepulcher / B: resepulchre +A: resepulchers / B: resepulchres + +# resinize (level 80) +A Z: resinize / B: resinise +A Z: resinized / B: resinised +A Z: resinizing / B: resinising +A Z: resinizes / B: resinises + +# resolemnize (level 95) +A Z: resolemnize / B: resolemnise +A Z: resolemnizes / B: resolemnises + +# respectabilize (level 80) +A Z: respectabilize / B: respectabilise +A Z: respectabilized / B: respectabilised +A Z: respectabilizing / B: respectabilising +A Z: respectabilizes / B: respectabilises + +# restandardization (level 95) +A Z: restandardization / B: restandardisation +A Z: restandardizations / B: restandardisations +A Z: restandardization's / B: restandardisation's + +# restandardize (level 95) +A Z: restandardize / B: restandardise +A Z: restandardizes / B: restandardises + +# restaurateur (level 50) +_: restaurateur / _V: restauranteur +_: restaurateurs / _V: restauranteurs +_: restaurateur's / _V: restauranteur's + +# resterilize (level 80) +A Z: resterilize / B: resterilise +A Z: resterilizes / B: resterilises + +# restigmatize (level 95) +A Z: restigmatize / B: restigmatise +A Z: restigmatizes / B: restigmatises + +# resurrectionize (level 80) +A Z: resurrectionize / B: resurrectionise +A Z: resurrectionized / B: resurrectionised +A Z: resurrectionizing / B: resurrectionising +A Z: resurrectionizes / B: resurrectionises + +# resymbolization (level 95) +A Z: resymbolization / B: resymbolisation +A Z: resymbolizations / B: resymbolisations +A Z: resymbolization's / B: resymbolisation's + +# resymbolize (level 95) +A Z: resymbolize / B: resymbolise +A Z: resymbolizes / B: resymbolises + +# resynchronization (level 70) +A Z: resynchronization / B: resynchronisation +A Z: resynchronizations / B: resynchronisations +A Z: resynchronization's / B: resynchronisation's + +# resynchronize (level 70) +A Z: resynchronize / B: resynchronise +A Z: resynchronized / B: resynchronised +A Z: resynchronizing / B: resynchronising +A Z: resynchronizes / B: resynchronises + +# resynthesize (level 70) +A Z: resynthesize / B: resynthesise +A Z: resynthesizes / B: resynthesises + +# retinize (level 95) +A Z: retinize / B: retinise +A Z: retinizes / B: retinises + +# retinule (level 80) +A: retinule / B: retinulae + +# retranquilize (level 95) +A Z: retranquilize / B: retranquilise +A Z: retranquilizes / B: retranquilises + +# retrocecal (level 95) +A: retrocecal / B: retrocaecal + +# reutilization (level 80) +A Z: reutilization / B: reutilisation +A Z: reutilization's / B: reutilisation's + +# reutilize (level 80) +A Z: reutilize / B: reutilise +A Z: reutilized / B: reutilised +A Z: reutilizing / B: reutilising +A Z: reutilizes / B: reutilises + +# revalorization (level 80) +A Z: revalorization / B: revalorisation +A Z: revalorizations / B: revalorisations +A Z: revalorization's / B: revalorisation's + +# revalorize (level 80) +A Z: revalorize / B: revalorise +A Z: revalorized / B: revalorised +A Z: revalorizing / B: revalorising +A Z: revalorizes / B: revalorises + +# revaporization (level 95) +A Z: revaporization / B: revapourisation +A Z: revaporizations / B: revapourisations +A Z: revaporization's / B: revapourisation's +## see note for "vaporize" + +# revaporize (level 95) +A Z: revaporize / B: revaporise +A Z: revaporizes / B: revaporises +## see note for "vaporize" + +# revel (level 35) +A: reveled / B: revelled +A: reveling / B: revelling +A: revelings / B: revellings + +# revelationize (level 95) +A Z: revelationize / B: revelationise +A Z: revelationizes / B: revelationises + +# reveler (level 35) +A: reveler / B: reveller +A: revelers / B: revellers +A: reveler's / B: reveller's + +# reverie (level 35) +_: reverie / _V: revery +_: reverie's / _V: revery's + +# revigor (level 95) +A: revigor / B: revigour + +# revisualization (level 80) +A Z: revisualization / B: revisualisation +A Z: revisualizations / B: revisualisations +A Z: revisualization's / B: revisualisation's + +# revisualize (level 80) +A Z: revisualize / B: revisualise +A Z: revisualizes / B: revisualises + +# revitalization (level 40) +A Z: revitalization / B: revitalisation +A Z: revitalizations / B: revitalisations +A Z: revitalization's / B: revitalisation's + +# revitalize (level 40) +A Z: revitalize / B: revitalise +A Z: revitalized / B: revitalised +A Z: revitalizing / B: revitalising +A Z: revitalizes / B: revitalises + +# revitalizer (level 95) +A Z: revitalizer / B: revitaliser +A Z: revitalizers / B: revitalisers + +# revivalize (level 95) +A Z: revivalize / B: revivalise +A Z: revivalizes / B: revivalises + +# revocable (level 50) +_: revocable / _V: revokable + +# revolatilize (level 95) +A Z: revolatilize / B: revolatilise +A Z: revolatilizes / B: revolatilises + +# revolutionize (level 35) +A Z: revolutionize / B: revolutionise +A Z: revolutionized / B: revolutionised +A Z: revolutionizing / B: revolutionising +A Z: revolutionizes / B: revolutionises + +# revolutionizement (level 95) +A Z: revolutionizement / B: revolutionisement +A Z: revolutionizements / B: revolutionisements +A Z: revolutionizement's / B: revolutionisement's + +# revolutionizer (level 70) +A Z: revolutionizer / B: revolutioniser +A Z: revolutionizers / B: revolutionisers +A Z: revolutionizer's / B: revolutioniser's + +# Rexford (level 80) +A: Rexford / B: Rexfourd +A: Rexford's / B: Rexfourd's + +# rhaphe (level 80) +A: rhaphe / B: rhaphae + +# rhapsodize (level 50) +A Z: rhapsodize / B: rhapsodise +A Z: rhapsodized / B: rhapsodised +A Z: rhapsodizing / B: rhapsodising +A Z: rhapsodizes / B: rhapsodises + +# rheadine (level 80) +A: rheadine / B: rhoeadine + +# rhebosis (level 95) +A: rhebosis / B: rhaebosis + +# Rhetian (level 70) +A: Rhetian / B: Rhaetian +A: Rhetian's / B: Rhaetian's + +# Rhetic (level 70) +A: Rhetic / B: Rhaetic + +# rhetorize (level 80) +A Z: rhetorize / B: rhetorise +A Z: rhetorized / B: rhetorised +A Z: rhetorizing / B: rhetorising +A Z: rhetorizes / B: rhetorises + +# rheumatize (level 80) +A Z: rheumatize / B: rheumatise +A Z: rheumatized / B: rheumatised +A Z: rheumatizing / B: rheumatising +A Z: rheumatizes / B: rheumatises + +# rhinocele (level 95) +A: rhinocele / B: rhinocoele + +# rhinocelian (level 95) +A: rhinocelian / B: rhinocoelian + +# rhinorrhea (level 80) +A: rhinorrhea / B: rhinorrhoea + +# rhinorrheal (level 80) +A: rhinorrheal / B: rhinorrhoeal + +# rhodanize (level 80) +A Z: rhodanize / B: rhodanise +A Z: rhodanized / B: rhodanised +A Z: rhodanizing / B: rhodanising +A Z: rhodanizes / B: rhodanises + +# rhotacize (level 80) +A Z: rhotacize / B: rhotacise +A Z: rhotacized / B: rhotacised +A Z: rhotacizing / B: rhotacising +A Z: rhotacizes / B: rhotacises + +# rhythmicize (level 95) +A Z: rhythmicize / B: rhythmicise +A Z: rhythmicizes / B: rhythmicises + +# rhythmizable (level 95) +A Z: rhythmizable / B: rhythmisable +A Z: rhythmizables / B: rhythmisables +A Z: rhythmizable's / B: rhythmisable's + +# rhythmization (level 80) +A Z: rhythmization / B: rhythmisation +A Z: rhythmizations / B: rhythmisations +A Z: rhythmization's / B: rhythmisation's + +# rhythmize (level 80) +A Z: rhythmize / B: rhythmise +A Z: rhythmized / B: rhythmised +A Z: rhythmizing / B: rhythmising +A Z: rhythmizes / B: rhythmises + +# rickshaw (level 35) +_: rickshaw / _V: ricksha +_: rickshaws / _V: rickshas +_: rickshaw's / _V: ricksha's + +# ridiculize (level 95) +A Z: ridiculize / B: ridiculise +A Z: ridiculizes / B: ridiculises + +# rigidize (level 80) +A Z: rigidize / B: rigidise +A Z: rigidized / B: rigidised +A Z: rigidizing / B: rigidising +A Z: rigidizes / B: rigidises + +# rigmarole (level 40) +_: rigmarole / _v: rigamarole +_: rigmaroles / _v: rigamaroles +_: rigmarole's / _v: rigamarole's + +# rigor (level 35) +A Cv DV: rigor / B C D: rigour +A Cv DV: rigors / B C D: rigours +A Cv DV: rigor's / B C D: rigour's + +# rigorism (level 70) +A: rigorism / B: rigourism +A: rigorism's / B: rigourism's + +# rigorist (level 70) +A: rigorist / B: rigourist +A: rigorist's / B: rigourist's + +# rigoristic (level 80) +A: rigoristic / B: rigouristic + +# riotize (level 95) +A Z: riotize / B: riotise +A Z: riotizes / B: riotises + +# riposte (level 35) +_: riposte / _-: ripost +_: ripostes / _-: riposts +_: riposte's / _-: ripost's + +# ritornelle (level 80) +A: ritornelle / B: ritournelle +A: ritornelles / B: ritournelles + +# ritualization (level 80) +A Z: ritualization / B: ritualisation +A Z: ritualizations / B: ritualisations +A Z: ritualization's / B: ritualisation's + +# ritualize (level 55) +A Z: ritualize / B: ritualise +A Z: ritualized / B: ritualised +A Z: ritualizing / B: ritualising +A Z: ritualizes / B: ritualises + +# rival (level 35) +A: rivaled / B: rivalled +A: rivaling / B: rivalling + +# rivaless (level 80) +A: rivaless / B: rivalless +A: rivalesses / B: rivallesses +A: rivaless's / B: rivalless's + +# rivalize (level 80) +A Z: rivalize / B: rivalise +A Z: rivalized / B: rivalised +A Z: rivalizing / B: rivalising +A Z: rivalizes / B: rivalises + +# robotization (level 80) +A Z: robotization / B: robotisation +A Z: robotizations / B: robotisations +A Z: robotization's / B: robotisation's + +# robotize (level 60) +A Z: robotize / B: robotise +A Z: robotized / B: robotised +A Z: robotizing / B: robotising +A Z: robotizes / B: robotises + +# roed (level 80) +A: roed / B: rooed + +# Roentgen (level 50) +_: Roentgen / _v: Röntgen + +# roentgenize (level 80) +A Z: roentgenize / B: roentgenise + +# roer (level 80) +A: roer / B: rore + +# Romania (level 50) +A: Romania / B: Roumania +A: Romanias / B: Roumanias +A: Romania's / B: Roumania's + +# Romanization (level 80) +A Z: Romanization / B: Romanisation +A Z: Romanizations / B: Romanisations +A Z: Romanization's / B: Romanisation's + +# Romanize (level 70) +A Z: Romanize / B: Romanise +A Z: Romanized / B: Romanised +A Z: Romanizing / B: Romanising +A Z: Romanizes / B: Romanises +A Z: romanize / B: romanise +A Z: romanized / B: romanised +A Z: romanizing / B: romanising +A Z: romanizes / B: romanises + +# Romanizer (level 80) +A Z: Romanizer / B: Romaniser +A Z: Romanizers / B: Romanisers +A Z: Romanizer's / B: Romaniser's + +# romanticization (level 80) +A Z: romanticization / B: romanticisation +A Z: romanticizations / B: romanticisations +A Z: romanticization's / B: romanticisation's + +# romanticize (level 40) +A Z: romanticize / B: romanticise +A Z: romanticized / B: romanticised +A Z: romanticizing / B: romanticising +A Z: romanticizes / B: romanticises + +# ropy (level 55) +_: ropy / _V: ropey +_ _V: ropier +_ _V: ropiest + +# routinization (level 80) +A Z: routinization / B: routinisation +A Z: routinizations / B: routinisations +A Z: routinization's / B: routinisation's + +# routinize (level 50) +A Z: routinize / B: routinise +A Z: routinized / B: routinised +A Z: routinizing / B: routinising +A Z: routinizes / B: routinises + +# rowel (level 50) +A Cv: roweled / B C: rowelled +A Cv: roweling / B C: rowelling + +# royalization (level 95) +A Z: royalization / B: royalisation +A Z: royalizations / B: royalisations +A Z: royalization's / B: royalisation's + +# royalize (level 80) +A Z: royalize / B: royalise +A Z: royalized / B: royalised +A Z: royalizing / B: royalising +A Z: royalizes / B: royalises + +# rubberization (level 99) +A Z: rubberization / B: rubberisation + +# rubberize (level 50) +A Z: rubberize / B: rubberise +A Z: rubberized / B: rubberised +A Z: rubberizing / B: rubberising +A Z: rubberizes / B: rubberises + +# ruble (level 50) +A: ruble / B: rouble +A: rubles / B: roubles +A: ruble's / B: rouble's + +# rubricize (level 95) +A Z: rubricize / B: rubricise +A Z: rubricizes / B: rubricises + +# ruffianize (level 95) +A Z: ruffianize / B: ruffianise +A Z: ruffianizes / B: ruffianises + +# ruggedization (level 80) +A Z: ruggedization / B: ruggedisation +A Z: ruggedizations / B: ruggedisations +A Z: ruggedization's / B: ruggedisation's + +# ruggedize (level 70) +A Z: ruggedize / B: ruggedise +A Z: ruggedized / B: ruggedised +A Z: ruggedizing / B: ruggedising +A Z: ruggedizes / B: ruggedises + +# rumor (level 10) +A Cv DV: rumor / B C D: rumour +A Cv DV: rumored / B C D: rumoured +A Cv DV: rumoring / B C D: rumouring +A Cv DV: rumors / B C D: rumours +A Cv DV: rumor's / B C D: rumour's + +# rumorer (level 80) +A: rumorer / B: rumourer +A: rumorers / B: rumourers +A: rumorer's / B: rumourer's + +# rumormonger (level 55) +A DV: rumormonger / B D: rumourmonger +A DV: rumormongers / B D: rumourmongers +A DV: rumormonger's / B D: rumourmonger's + +# ruralization (level 80) +A Z: ruralization / B: ruralisation +A Z: ruralizations / B: ruralisations +A Z: ruralization's / B: ruralisation's + +# ruralize (level 70) +A Z: ruralize / B: ruralise +A Z: ruralized / B: ruralised +A Z: ruralizing / B: ruralising +A Z: ruralizes / B: ruralises + +# Russianization (level 80) +A Z: Russianization / B: Russianisation +A Z: Russianizations / B: Russianisations +A Z: Russianization's / B: Russianisation's +A Z: russianization / B: russianisation + +# Russianize (level 70) +A Z: Russianize / B: Russianise +A Z: Russianized / B: Russianised +A Z: Russianizing / B: Russianising +A Z: Russianizes / B: Russianises +A Z: russianize / B: russianise + +# rusticize (level 80) +A Z: rusticize / B: rusticise +A Z: rusticized / B: rusticised +A Z: rusticizing / B: rusticising +A Z: rusticizes / B: rusticises + +# Sabbathize (level 95) +A Z: Sabbathize / B: Sabbathise +A Z: Sabbathizes / B: Sabbathises +A Z: Sabbathize's / B: Sabbathise's + +# sabbatize (level 80) +A Z: sabbatize / B: sabbatise +A Z: sabbatized / B: sabbatised +A Z: sabbatizing / B: sabbatising +A Z: sabbatizes / B: sabbatises + +# Sabean (level 70) +A: Sabean / B: Sabaean +A: Sabeans / B: Sabaeans + +# saber (level 35) +A: saber / Av B: sabre +A: sabered / Av B: sabred +A: sabering / Av B: sabring +A: sabers / Av B: sabres +A: saber's / Av B: sabre's + +# saberbill (level 95) +A: saberbill / B: sabrebill + +# saberlike (level 95) +A: saberlike / B: sabrelike +A: saberlikes / B: sabrelikes +A: saberlike's / B: sabrelike's + +# sabertooth (level 80) +A: sabertooth / B: sabretooth + +# saccharization (level 80) +A Z: saccharization / B: saccharisation +A Z: saccharizations / B: saccharisations + +# saccharize (level 80) +A Z: saccharize / B: saccharise +A Z: saccharized / B: saccharised +A Z: saccharizing / B: saccharising +A Z: saccharizes / B: saccharises + +# sacerdotalize (level 80) +A Z: sacerdotalize / B: sacerdotalise +A Z: sacerdotalized / B: sacerdotalised +A Z: sacerdotalizing / B: sacerdotalising +A Z: sacerdotalizes / B: sacerdotalises + +# sacralization (level 80) +A Z: sacralization / B: sacralisation +A Z: sacralizations / B: sacralisations +A Z: sacralization's / B: sacralisation's + +# sacralize (level 80) +A Z: sacralize / B: sacralise +A Z: sacralized / B: sacralised +A Z: sacralizing / B: sacralising +A Z: sacralizes / B: sacralises + +# sacramentize (level 95) +A Z: sacramentize / B: sacramentise +A Z: sacramentizes / B: sacramentises + +# Safier (level 95) +A: Safier / B: Safire +A: Safier's / B: Safire's + +# sailorizing (level 95) +A Z: sailorizing / B: sailorising +A Z: sailorizings / B: sailorisings +A Z: sailorizing's / B: sailorising's + +# sake (level 10) +A B: sake | :1 +A B: sakes | :1 +A B: sake's | :1 +A C: sake / Av B Cv: saki | :2 +A C: sakes / Av B Cv: sakis | :2 +A C: sake's / Av B Cv: saki's | :2 + +# salable (level 35) +A: salable / Av B: saleable +A: salabler / Av B: saleabler +A: salablest / Av B: saleablest + +# salinization (level 70) +A Z: salinization / B: salinisation + +# salinize (level 70) +A Z: salinize / B: salinise +A Z: salinizes / B: salinises + +# saltiers (level 70) +A: saltiers / B: saltires + +# saltierwise (level 80) +A: saltierwise / B: saltirewise + +# saltpeter (level 50) +A: saltpeter / B: saltpetre +A: saltpeters / B: saltpetres +A: saltpeter's / B: saltpetre's + +# sanctuarize (level 80) +A Z: sanctuarize / B: sanctuarise +A Z: sanctuarized / B: sanctuarised +A Z: sanctuarizing / B: sanctuarising +A Z: sanctuarizes / B: sanctuarises + +# sandal (level 70) +A: sandaled / B: sandalled +A: sandaling / B: sandalling + +# Sanferd (level 95) +A: Sanferd / B: Sanfred +A: Sanferd's / B: Sanfred's + +# Sanforize (level 80) +A Z: Sanforize / B: Sanforise +A Z: Sanforizing / B: Sanforising +A Z: Sanforizes / B: Sanforises + +# sanitization (level 80) +A Z: sanitization / B: sanitisation +A Z: sanitizations / B: sanitisations +A Z: sanitization's / B: sanitisation's + +# sanitize (level 40) +A Z: sanitize / B: sanitise +A Z: sanitized / B: sanitised +A Z: sanitizing / B: sanitising +A Z: sanitizes / B: sanitises + +# sanitizer (level 70) +A Z: sanitizer / B: sanitiser +A Z: sanitizers / B: sanitisers +A Z: sanitizer's / B: sanitiser's + +# Sanskritize (level 95) +A Z: Sanskritize / B: Sanskritise +A Z: Sanskritize's / B: Sanskritise's + +# sapientize (level 95) +A Z: sapientize / B: sapientise +A Z: sapientizes / B: sapientises + +# sapor (level 70) +A: sapor / B: sapour +A: sapors / B: sapours + +# sapremia (level 80) +A: sapremia / B: sapraemia +A: sapremias / B: sapraemias +A: sapremia's / B: sapraemia's + +# sapremic (level 80) +A: sapremic / B: sapraemic + +# sarcine (level 80) +A: sarcine / B: sarcinae + +# sari (level 35) +_: sari / _V: saree +_: saris / _V: sarees +_: sari's / _V: saree's + +# Sassanide (level 80) +A: Sassanide / B: Sassanidae + +# satanize (level 95) +A Z: satanize / B: satanise +A Z: satanizes / B: satanises + +# satellitize (level 80) +A Z: satellitize / B: satellitise +A Z: satellitized / B: satellitised +A Z: satellitizing / B: satellitising +A Z: satellitizes / B: satellitises + +# satinize (level 95) +A Z: satinize / B: satinise +A Z: satinizes / B: satinises + +# satirizable (level 80) +A Z: satirizable / B: satirisable +A Z: satirizables / B: satirisables +A Z: satirizable's / B: satirisable's + +# satirization (level 70) +A Z: satirization / B: satirisation + +# satirize (level 35) +A Z: satirize / B: satirise +A Z: satirized / B: satirised +A Z: satirizing / B: satirising +A Z: satirizes / B: satirises + +# satirizer (level 80) +A Z: satirizer / B: satiriser +A Z: satirizers / B: satirisers +A Z: satirizer's / B: satiriser's + +# sative (level 80) +A: sative / B: sativae + +# savable (level 60) +_: savable / _v: saveable + +# savagize (level 95) +A Z: savagize / B: savagise +A Z: savagizes / B: savagises + +# Savannah (level 50) +_: Savannah | :1 +_: savanna / _V: savannah | :2 +_: savannas / _V: savannahes | :2 +_: savanna's / _V: savannah's | :2 + +# savior (level 35) +A Cv DV: savior / B C D: saviour +A Cv DV: saviors / B C D: saviours +A Cv DV: savior's / B C D: saviour's + +# savioress (level 95) +A: savioress / B: saviouress + +# saviorhood (level 95) +A Cv DV: saviorhood / B C D: saviourhood +A Cv DV: saviorhoods / B C D: saviourhoods +A Cv DV: saviorhood's / B C D: saviourhood's + +# saviorship (level 95) +A Cv DV: saviorship / B C D: saviourship +A Cv DV: saviorships / B C D: saviourships +A Cv DV: saviorship's / B C D: saviourship's + +# savor (level 35) +A Cv DV: savor / B C D: savour +A Cv DV: savored / B C D: savoured +A Cv DV: savoring / B C D: savouring +A Cv DV: savors / B C D: savours +A Cv DV: savor's / B C D: savour's + +# savorer (level 70) +A Cv DV: savorer / B C D: savourer +A Cv DV: savorers / B C D: savourers +A Cv DV: savorer's / B C D: savourer's + +# savorily (level 70) +A Cv DV: savorily / B C D: savourily +A Cv DV: savorilies / B C D: savourilies + +# savoriness (level 60) +A Cv DV: savoriness / B C D: savouriness +A Cv DV: savorinesses / B C D: savourinesses +A Cv DV: savoriness's / B C D: savouriness's + +# savoringly (level 95) +A Cv DV: savoringly / B C D: savouringly +A Cv DV: savoringlier / B C D: savouringlier +A Cv DV: savoringlies / B C D: savouringlies +A Cv DV: savoringliest / B C D: savouringliest + +# savorless (level 70) +A Cv DV: savorless / B C D: savourless +A Cv DV: savorlesser / B C D: savourlesser +A Cv DV: savorlessest / B C D: savourlessest + +# savorlesses (level 99) +A Cv DV: savorlesses / B C D: savourlesses + +# savorly (level 95) +A Cv DV: savorly / B C D: savourly + +# savorous (level 80) +A: savorous / B: savourous +A: savorouser / B: savourouser +A: savorousest / B: savourousest + +# savory (level 35) +A Cv DV: savory / B C D: savoury +A Cv DV: savorier / B C D: savourier +A Cv DV: savories / B C D: savouries +A Cv DV: savoriest / B C D: savouriest +A Cv DV: savory's / B C D: savoury's + +# Saxonization (level 95) +A Z: Saxonization / B: Saxonisation +A Z: Saxonizations / B: Saxonisations +A Z: Saxonization's / B: Saxonisation's + +# Saxonize (level 80) +A Z: Saxonize / B: Saxonise +A Z: Saxonized / B: Saxonised +A Z: Saxonized's / B: Saxonised's +A Z: Saxonizing / B: Saxonising +A Z: Saxonizes / B: Saxonises +A Z: Saxonize's / B: Saxonise's +A Z: Saxonizing's / B: Saxonising's + +# scalawag (level 50) +_: scalawag / _v: scallywag +_: scalawags / _v: scallywags +_: scalawag's / _v: scallywag's + +# scallop (level 35) +_: scallop / _V: scollop +_: scalloped / _V: scolloped +_: scalloping / _V: scolloping +_: scallops / _V: scollops +_: scallop's / _V: scollop's + +# scandal (level 80) +A: scandaled / B: scandalled +A: scandaling / B: scandalling + +# scandalization (level 70) +A Z: scandalization / B: scandalisation +A Z: scandalizations / B: scandalisations +A Z: scandalization's / B: scandalisation's + +# scandalize (level 35) +A Z: scandalize / B: scandalise +A Z: scandalized / B: scandalised +A Z: scandalizing / B: scandalising +A Z: scandalizes / B: scandalises + +# scandalizer (level 70) +A Z: scandalizer / B: scandaliser +A Z: scandalizers / B: scandalisers +A Z: scandalizer's / B: scandaliser's + +# scaped (level 80) +A: scaped / B: scapaed + +# scary (level 35) +_: scary / _-: scarey + +# scena (level 80) +A: scena / B: scaena + +# scenarioization (level 95) +A Z: scenarioization / B: scenarioisation +A Z: scenarioizations / B: scenarioisations +A Z: scenarioization's / B: scenarioisation's + +# scenarioize (level 95) +A Z: scenarioize / B: scenarioise +A Z: scenarioizes / B: scenarioises + +# scenarization (level 80) +A Z: scenarization / B: scenarisation +A Z: scenarizations / B: scenarisations +A Z: scenarization's / B: scenarisation's + +# scenarize (level 80) +A Z: scenarize / B: scenarise +A Z: scenarized / B: scenarised +A Z: scenarizing / B: scenarising +A Z: scenarizes / B: scenarises + +# scepter (level 35) +A: scepter / B: sceptre +A: sceptered / B: sceptred +A: sceptering / B: sceptring +A: scepters / B: sceptres +A: scepter's / B: sceptre's + +# scepterdom (level 95) +A: scepterdom / B: sceptredom + +# scepterless (level 80) +A: scepterless / B: sceptreless + +# scepterlesses (level 99) +A: scepterlesses / B: sceptrelesses + +# Scevor (level 95) +A: Scevor / B: Scevour +A: Scevor's / B: Scevour's + +# schedulize (level 95) +A Z: schedulize / B: schedulise +A Z: schedulizes / B: schedulises + +# schemata (level 55) +_: schemata / _V: schemas + +# schematization (level 70) +A Z: schematization / B: schematisation +A Z: schematizations / B: schematisations +A Z: schematization's / B: schematisation's + +# schematize (level 55) +A Z: schematize / B: schematise +A Z: schematized / B: schematised +A Z: schematizing / B: schematising +A Z: schematizes / B: schematises + +# schematizer (level 95) +A Z: schematizer / B: schematiser +A Z: schematizers / B: schematisers + +# schillerization (level 80) +A Z: schillerization / B: schillerisation +A Z: schillerizations / B: schillerisations + +# schillerize (level 80) +A Z: schillerize / B: schillerise +A Z: schillerized / B: schillerised +A Z: schillerizing / B: schillerising +A Z: schillerizes / B: schillerises + +# schismatize (level 80) +A Z: schismatize / B: schismatise +A Z: schismatized / B: schismatised +A Z: schismatizing / B: schismatising +A Z: schismatizes / B: schismatises + +# schistocelia (level 95) +A: schistocelia / B: schistocoelia + +# schlemiel (level 50) +_: schlemiel / _V: shlemiel +_: schlemiels / _V: shlemiels +_: schlemiel's / _V: shlemiel's + +# schlep (level 40) +_: schlep / _v: schlepp / _V: shlep / _V: shlepp +_ _v: schlepped / _V: shlepped +_ _v: schlepping / _V: shlepping +_: schleps / _v: schlepps / _V: shleps / _V: shlepps +_: schlep's / _v: schlepp's / _V: shlepp's / _V: shlep's + +# schlock (level 40) +_: schlock / _v: schlocky / _V: shlock / _V: shlocky + +# schmaltz (level 40) +_: schmaltz / _V: schmalz / _-: shmaltz +_: schmaltzes / _V: schmalzes / _-: shmaltzes +_: schmaltz's / _V: schmalz's / _-: shmaltz's + +# schmaltzy (level 40) +_: schmaltzy / _V: schmalzy + +# schmo (level 60) +_: schmo / _v: schmoe +_: schmo's / _v: schmoe's + +# schnapps (level 50) +_: schnapps / _-: schnaps +_: schnapps's / _-: schnaps's + +# scientize (level 80) +A Z: scientize / B: scientise +A Z: scientized / B: scientised +A Z: scientizing / B: scientising +A Z: scientizes / B: scientises + +# sclere (level 80) +A: sclere / B: sclerae + +# sclerotization (level 80) +A Z: sclerotization / B: sclerotisation +A Z: sclerotization's / B: sclerotisation's + +# sclerotize (level 80) +A Z: sclerotize / B: sclerotise +A Z: sclerotized / B: sclerotised +A Z: sclerotizing / B: sclerotising +A Z: sclerotizes / B: sclerotises + +# scorse (level 80) +A: scorse / B: scourse +A: scorsed / B: scoursed +A: scorsing / B: scoursing +A: scorses / B: scourses + +# Scotticize (level 80) +A Z: Scotticize / B: Scotticise +A Z: Scotticized / B: Scotticised +A Z: Scotticized's / B: Scotticised's +A Z: Scotticizing / B: Scotticising +A Z: Scotticizes / B: Scotticises +A Z: Scotticize's / B: Scotticise's +A Z: Scotticizing's / B: Scotticising's + +# scripturalize (level 95) +A Z: scripturalize / B: scripturalise +A Z: scripturalizes / B: scripturalises + +# scrod (level 50) +_: scrod / _V: schrod +_: scrods / _V: schrods +_: scrod's / _V: schrod's + +# scrunchy (level 55) +_: scrunchy / _v: scrunchie +_: scrunchy's / _v: scrunchie's + +# scrutinization (level 70) +A Z: scrutinization / B: scrutinisation +A Z: scrutinizations / B: scrutinisations +A Z: scrutinization's / B: scrutinisation's + +# scrutinize (level 35) +A Z: scrutinize / B: scrutinise +A Z: scrutinized / B: scrutinised +A Z: scrutinizing / B: scrutinising +A Z: scrutinizes / B: scrutinises + +# scrutinizer (level 70) +A Z: scrutinizer / B: scrutiniser +A Z: scrutinizers / B: scrutinisers +A Z: scrutinizer's / B: scrutiniser's + +# scrutinizingly (level 80) +A Z: scrutinizingly / B: scrutinisingly +A Z: scrutinizinglies / B: scrutinisinglies + +# se (level 80) +A: se / B: sae +A: se / B: soe + +# seborrhea (level 60) +A C: seborrhea / B: seborrhoea +A C: seborrheas / B: seborrhoeas +A C: seborrhea's / B: seborrhoea's + +# seborrheic (level 70) +A C: seborrheic / B: seborrhoeic + +# sectarianization (level 99) +A Z: sectarianization / B: sectarianisation + +# sectarianize (level 70) +A Z: sectarianize / B: sectarianise +A Z: sectarianized / B: sectarianised +A Z: sectarianizing / B: sectarianising +A Z: sectarianizes / B: sectarianises + +# sectionalization (level 80) +A Z: sectionalization / B: sectionalisation +A Z: sectionalizations / B: sectionalisations +A Z: sectionalization's / B: sectionalisation's + +# sectionalize (level 70) +A Z: sectionalize / B: sectionalise +A Z: sectionalized / B: sectionalised +A Z: sectionalizing / B: sectionalising +A Z: sectionalizes / B: sectionalises + +# sectionization (level 80) +A Z: sectionization / B: sectionisation +A Z: sectionizations / B: sectionisations + +# sectionize (level 80) +A Z: sectionize / B: sectionise +A Z: sectionized / B: sectionised +A Z: sectionizing / B: sectionising +A Z: sectionizes / B: sectionises + +# sectorization (level 80) +A Z: sectorization / B: sectorisation +A Z: sectorizations / B: sectorisations + +# sectorize (level 80) +A Z: sectorize / B: sectorise +A Z: sectorized / B: sectorised +A Z: sectorizing / B: sectorising +A Z: sectorizes / B: sectorises + +# secularization (level 50) +A Z: secularization / B: secularisation +A Z: secularizations / B: secularisations +A Z: secularization's / B: secularisation's + +# secularize (level 50) +A Z: secularize / B: secularise +A Z: secularized / B: secularised +A Z: secularizing / B: secularising +A Z: secularizes / B: secularises + +# secularizer (level 70) +A Z: secularizer / B: seculariser +A Z: secularizers / B: secularisers +A Z: secularizer's / B: seculariser's + +# seculum (level 80) +A: seculum / B: saeculum +A: seculums / B: saeculums + +# securitization (level 80) +A Z: securitization / B: securitisation +A Z: securitizations / B: securitisations + +# securitize (level 80) +A Z: securitize / B: securitise +A Z: securitized / B: securitised +A Z: securitizing / B: securitising +A Z: securitizes / B: securitises + +# Seed (level 95) +A: Seed / B: Saeed +A: Seed's / B: Saeed's + +# seizable (level 70) +A Z: seizable / B: seisable + +# seizer (level 70) +A Z: seizer / B: seiser +A Z: seizers / B: seisers +A Z: seizer's / B: seiser's + +# seizin (level 70) +A Z: seizin / B: seisin +A Z: seizins / B: seisins +A Z: seizin's / B: seisin's + +# seizings (level 70) +A Z: seizings / B: seisings + +# selle (level 80) +A: selle / B: sellae + +# selvage (level 50) +_: selvage / _v: selvedge +_: selvages / _v: selvedges +_: selvage's / _v: selvedge's + +# Semenov (level 95) +A: Semenov / B: Semaenov +A: Semenov's / B: Semaenov's + +# semianesthetic (level 95) +A: semianesthetic / B: semianaesthetic + +# semicarbonize (level 95) +A Z: semicarbonize / B: semicarbonise +A Z: semicarbonizes / B: semicarbonises + +# semicivilization (level 95) +A Z: semicivilization / B: semicivilisation +A Z: semicivilizations / B: semicivilisations +A Z: semicivilization's / B: semicivilisation's + +# semicivilized (level 70) +A Z: semicivilized / B: semicivilised +A Z: semicivilizeds / B: semiciviliseds +A Z: semicivilized's / B: semicivilised's + +# semifossilized (level 95) +A Z: semifossilized / B: semifossilised +A Z: semifossilizeds / B: semifossiliseds +A Z: semifossilized's / B: semifossilised's + +# semihonor (level 95) +A: semihonor / B: semihonour +A: semihonors / B: semihonours +A: semihonor's / B: semihonour's + +# semihumanized (level 95) +A Z: semihumanized / B: semihumanised +A Z: semihumanizeds / B: semihumaniseds +A Z: semihumanized's / B: semihumanised's + +# semimercerized (level 95) +A Z: semimercerized / B: semimercerised +A Z: semimercerizeds / B: semimerceriseds +A Z: semimercerized's / B: semimercerised's + +# semimineralized (level 95) +A Z: semimineralized / B: semimineralised +A Z: semimineralizeds / B: semimineraliseds +A Z: semimineralized's / B: semimineralised's + +# seminarize (level 95) +A Z: seminarize / B: seminarise +A Z: seminarizes / B: seminarises + +# seminationalization (level 95) +A Z: seminationalization / B: seminationalisation +A Z: seminationalizations / B: seminationalisations +A Z: seminationalization's / B: seminationalisation's + +# semiorganized (level 95) +A Z: semiorganized / B: semiorganised +A Z: semiorganizeds / B: semiorganiseds +A Z: semiorganized's / B: semiorganised's + +# semioxidized (level 95) +A Z: semioxidized / B: semioxidised +A Z: semioxidizeds / B: semioxidiseds +A Z: semioxidized's / B: semioxidised's + +# semioxygenized (level 95) +A Z: semioxygenized / B: semioxygenised +A Z: semioxygenizeds / B: semioxygeniseds +A Z: semioxygenized's / B: semioxygenised's + +# semiprofessionalized (level 95) +A Z: semiprofessionalized / B: semiprofessionalised +A Z: semiprofessionalizeds / B: semiprofessionaliseds +A Z: semiprofessionalized's / B: semiprofessionalised's + +# semite (level 95) +A: semite / B: semitae + +# Semiticize (level 95) +A Z: Semiticize / B: Semiticise +A Z: Semiticizes / B: Semiticises +A Z: Semiticize's / B: Semiticise's + +# Semitization (level 80) +A Z: Semitization / B: Semitisation +A Z: Semitizations / B: Semitisations +A Z: Semitization's / B: Semitisation's + +# Semitize (level 80) +A Z: Semitize / B: Semitise +A Z: Semitized / B: Semitised +A Z: Semitized's / B: Semitised's +A Z: Semitizing / B: Semitising +A Z: Semitizes / B: Semitises +A Z: Semitize's / B: Semitise's +A Z: Semitizing's / B: Semitising's + +# semivulcanized (level 95) +A Z: semivulcanized / B: semivulcanised +A Z: semivulcanizeds / B: semivulcaniseds +A Z: semivulcanized's / B: semivulcanised's + +# semper (level 80) +A: semper / B: sempre + +# senilize (level 95) +A Z: senilize / B: senilise +A Z: senilizes / B: senilises + +# sensationalize (level 55) +A Z: sensationalize / B: sensationalise +A Z: sensationalized / B: sensationalised +A Z: sensationalizing / B: sensationalising +A Z: sensationalizes / B: sensationalises + +# sensitization (level 50) +A Z: sensitization / B: sensitisation +A Z: sensitizations / B: sensitisations +A Z: sensitization's / B: sensitisation's + +# sensitize (level 50) +A Z: sensitize / B: sensitise +A Z: sensitized / B: sensitised +A Z: sensitizing / B: sensitising +A Z: sensitizes / B: sensitises + +# sensitizer (level 70) +A Z: sensitizer / B: sensitiser +A Z: sensitizers / B: sensitisers +A Z: sensitizer's / B: sensitiser's + +# sensize (level 95) +A Z: sensize / B: sensise +A Z: sensizes / B: sensises + +# sensualization (level 80) +A Z: sensualization / B: sensualisation +A Z: sensualizations / B: sensualisations +A Z: sensualization's / B: sensualisation's + +# sensualize (level 70) +A Z: sensualize / B: sensualise +A Z: sensualized / B: sensualised +A Z: sensualizing / B: sensualising +A Z: sensualizes / B: sensualises + +# sentimentalization (level 60) +A Z: sentimentalization / B: sentimentalisation +A Z: sentimentalizations / B: sentimentalisations +A Z: sentimentalization's / B: sentimentalisation's + +# sentimentalize (level 50) +A Z: sentimentalize / B: sentimentalise +A Z: sentimentalized / B: sentimentalised +A Z: sentimentalizing / B: sentimentalising +A Z: sentimentalizes / B: sentimentalises + +# sentimentalizer (level 95) +A Z: sentimentalizer / B: sentimentaliser +A Z: sentimentalizers / B: sentimentalisers + +# sentinel (level 80) +A: sentineled / B: sentinelled +A: sentineling / B: sentinelling + +# sepaled (level 70) +A: sepaled / B: sepalled +A: sepaledder / B: sepalledder +A: sepaleddest / B: sepalleddest + +# Septembrizer (level 80) +A Z: Septembrizer / B: Septembriser +A Z: Septembrizers / B: Septembrisers +A Z: Septembrizer's / B: Septembriser's + +# septemia (level 95) +A: septemia / B: septaemia + +# septet (level 50) +_: septet / _V: septette +_: septet's / _V: septette's +_: septetes / _V: septettes + +# septicemia (level 50) +A C: septicemia / B: septicaemia +A C: septicemias / B: septicaemias +A C: septicemia's / B: septicaemia's + +# septicemic (level 60) +A C: septicemic / B: septicaemic + +# septicization (level 95) +A Z: septicization / B: septicisation +A Z: septicizations / B: septicisations +A Z: septicization's / B: septicisation's + +# septicolored (level 95) +A: septicolored / B: septicoloured + +# sepulcher (level 35) +A: sepulcher / B: sepulchre +A: sepulchered / B: sepulchred +A: sepulchering / B: sepulchring +A: sepulchers / B: sepulchres +A: sepulcher's / B: sepulchre's + +# sepulchralize (level 95) +A Z: sepulchralize / B: sepulchralise +A Z: sepulchralizes / B: sepulchralises + +# sequentialize (level 95) +A Z: sequentialize / B: sequentialise +A Z: sequentialized / B: sequentialised +A Z: sequentializing / B: sequentialising +A Z: sequentializes / B: sequentialises + +# serape (level 50) +_: serape / _V: sarape +_: serapes / _V: sarapes +_: serape's / _V: sarape's + +# serenize (level 95) +A Z: serenize / B: serenise +A Z: serenizes / B: serenises + +# serializability (level 95) +A Z: serializability / B: serialisability + +# serializable (level 95) +A Z: serializable / B: serialisable + +# serialization (level 50) +A Z: serialization / B: serialisation +A Z: serializations / B: serialisations +A Z: serialization's / B: serialisation's + +# serialize (level 50) +A Z: serialize / B: serialise +A Z: serialized / B: serialised +A Z: serializing / B: serialising +A Z: serializes / B: serialises + +# sericitization (level 80) +A Z: sericitization / B: sericitisation +A Z: sericitizations / B: sericitisations + +# sermonize (level 50) +A Z: sermonize / B: sermonise +A Z: sermonized / B: sermonised +A Z: sermonizing / B: sermonising +A Z: sermonizes / B: sermonises + +# sermonizer (level 70) +A Z: sermonizer / B: sermoniser +A Z: sermonizers / B: sermonisers +A Z: sermonizer's / B: sermoniser's + +# serose (level 80) +A: serose / B: serosae + +# serpentinization (level 80) +A Z: serpentinization / B: serpentinisation +A Z: serpentinizations / B: serpentinisations +A Z: serpentinization's / B: serpentinisation's + +# serpentinize (level 80) +A Z: serpentinize / B: serpentinise +A Z: serpentinized / B: serpentinised +A Z: serpentinizing / B: serpentinising +A Z: serpentinizes / B: serpentinises + +# serpentize (level 80) +A Z: serpentize / B: serpentise +A Z: serpentized / B: serpentised +A Z: serpentizing / B: serpentising +A Z: serpentizes / B: serpentises + +# serre (level 80) +A: serre / B: serrae + +# servilize (level 95) +A Z: servilize / B: servilise +A Z: servilizes / B: servilises + +# seta (level 70) +A: seta / B: saeta + +# setule (level 80) +A: setule / B: setulae + +# severalize (level 95) +A Z: severalize / B: severalise +A Z: severalizes / B: severalises + +# severization (level 95) +A Z: severization / B: severisation +A Z: severizations / B: severisations +A Z: severization's / B: severisation's + +# severize (level 95) +A Z: severize / B: severise +A Z: severizes / B: severises + +# sextet (level 50) +_: sextet / _V: sextette +_: sextet's / _V: sextette's +_: sextetes / _V: sextettes + +# sexualization (level 80) +A Z: sexualization / B: sexualisation +A Z: sexualizations / B: sexualisations +A Z: sexualization's / B: sexualisation's + +# sexualize (level 80) +A Z: sexualize / B: sexualise +A Z: sexualized / B: sexualised +A Z: sexualizing / B: sexualising +A Z: sexualizes / B: sexualises + +# Shakespearize (level 95) +A Z: Shakespearize / B: Shakespearise +A Z: Shakespearizes / B: Shakespearises +A Z: Shakespearize's / B: Shakespearise's + +# shard (level 50) +_: shard / _v: sherd | pottery fragments +_: shards / _v: sherds | pottery fragments +_: shard's / _v: sherd's | pottery fragments + +# shareable (level 60) +_: shareable / _v: sharable + +# sharpie (level 60) +_: sharpie / _v: sharpy +_: sharpie's / _v: sharpy's + +# sheik (level 35) +A B Cv: sheikh / Av Bv C: sheik / AV Bv Cv: shaykh / AV: shaikh | Arab chief +A B Cv: sheikhs / Av Bv C: sheiks / AV Bv Cv: shaykhs / AV: shaikhs | Arab chief +A B Cv: sheikh's / Av Bv C: sheik's / AV Bv Cv: shaykh's / AV: shaikh's | Arab chief +A Bv C: sheik / Av B Cv: sheikh | (-) +A Bv C: sheiks / Av B Cv: sheikhs | (-) +A Bv C: sheik's / Av B Cv: sheikh's | (-) + +# sheikdom (level 50) +_: sheikdom / _v: sheikhdom +_: sheikdoms / _v: sheikhdoms +_: sheikdom's / _v: sheikhdom's + +# shellac (level 50) +_: shellac / _-: shellack +_: shellacs / _-: shellacks +_: shellac's / _-: shellack's + +# shepherdize (level 95) +A Z: shepherdize / B: shepherdise +A Z: shepherdizes / B: shepherdises + +# sher (level 70) +A: sher / B: shoer + +# sherardize (level 80) +A Z: sherardize / B: sherardise +A Z: sherardized / B: sherardised +A Z: sherardizing / B: sherardising +A Z: sherardizes / B: sherardises + +# sherbet (level 35) +_: sherbet / _V: sherbert +_: sherbets / _V: sherberts +_: sherbet's / _V: sherbert's + +# Shere (level 95) +A: Shere / B: Shree +A: Shere's / B: Shree's +A: shere / B: shree + +# shillelagh (level 50) +_: shillelagh / _V: shillalah +_: shillelagh's / _V: shillalah's + +# shillelaghes (level 99) +_: shillelaghes / _V: shillalahes + +# Shintoize (level 95) +A Z: Shintoize / B: Shintoise +A Z: Shintoizes / B: Shintoises +A Z: Shintoize's / B: Shintoise's + +# shit (level 40) +_: shit / _v: shat | -- past tense + +# Shkoder (level 95) +A: Shkoder / B: Shkodaer +A: Shkoder's / B: Shkodaer's + +# shorty (level 55) +_: shorty / _v: shortie +_: shorty's / _v: shortie's + +# shovel (level 35) +A: shoveled / B: shovelled +A: shoveling / B: shovelling + +# shoveler (level 70) +A Cv: shoveler / B C: shoveller +A Cv: shovelers / B C: shovellers +A Cv: shoveler's / B C: shoveller's + +# shrivel (level 35) +A: shriveled / B: shrivelled +A: shriveling / B: shrivelling + +# shtick (level 50) +_: shtick / _V: shtik / _V: schtick +_: shticks / _V: shtiks / _V: schticks +_: shtick's / _V: schtick's / _V: shtik's + +# sialorrhea (level 80) +A: sialorrhea / B: sialorrhoea + +# siderealize (level 95) +A Z: siderealize / B: siderealise +A Z: siderealizes / B: siderealises + +# signal (level 20) +A: signaled / B: signalled +A: signaler / B: signaller +A: signalers / B: signallers +A: signaler's / B: signaller's +A: signaling / B: signalling + +# signalization (level 60) +A Z: signalization / B: signalisation + +# signalize (level 50) +A Z: signalize / B: signalise +A Z: signalized / B: signalised +A Z: signalizing / B: signalising +A Z: signalizes / B: signalises + +# siled (level 80) +A: siled / B: siloed + +# silicatization (level 95) +A Z: silicatization / B: silicatisation +A Z: silicatizations / B: silicatisations +A Z: silicatization's / B: silicatisation's + +# siliceous (level 50) +_: siliceous / _V: silicious + +# silicidize (level 95) +A Z: silicidize / B: silicidise +A Z: silicidizes / B: silicidises + +# siliconize (level 95) +A Z: siliconize / B: siliconise +A Z: siliconizes / B: siliconises + +# silicule (level 80) +A: silicule / B: siliculae + +# silique (level 70) +A: silique / B: siliquae + +# silverize (level 80) +A Z: silverize / B: silverise +A Z: silverized / B: silverised +A Z: silverizing / B: silverising +A Z: silverizes / B: silverises + +# silverizer (level 95) +A Z: silverizer / B: silveriser +A Z: silverizers / B: silverisers +A Z: silverizer's / B: silveriser's + +# similarize (level 95) +A Z: similarize / B: similarise +A Z: similarizes / B: similarises + +# similize (level 80) +A Z: similize / B: similise +A Z: similized / B: similised +A Z: similizing / B: similising +A Z: similizes / B: similises + +# simonize (level 60) +A Z: simonize / B: simonise + +# Sine (level 95) +A: Sine / B: Sinae +A: Sine's / B: Sinae's + +# singularization (level 70) +A Z: singularization / B: singularisation +A Z: singularizations / B: singularisations +A Z: singularization's / B: singularisation's + +# singularize (level 70) +A Z: singularize / B: singularise +A Z: singularized / B: singularised +A Z: singularizing / B: singularising +A Z: singularizes / B: singularises + +# sinicize (level 80) +A Z: sinicize / B: sinicise +A Z: sinicized / B: sinicised +A Z: sinicizing / B: sinicising +A Z: sinicizes / B: sinicises + +# siphon (level 35) +A B C: siphon / Bv: syphon +A B C: siphoned / Bv: syphoned +A B C: siphoning / Bv: syphoning +A B C: siphons / Bv: syphons +A B C: siphon's / Bv: syphon's + +# siphonless (level 95) +A B: siphonless / Bv: syphonless + +# siphonlesses (level 99) +A B: siphonlesses / Bv: syphonlesses + +# siphonlike (level 95) +A B: siphonlike / Bv: syphonlike +A B: siphonlikes / Bv: syphonlikes +A B: siphonlike's / Bv: syphonlike's + +# siphonophore (level 70) +A B: siphonophore / Bv: syphonophore +A B: siphonophore's / Bv: syphonophore's + +# siphonostele (level 70) +A B: siphonostele / Bv: syphonostele +A B: siphonostele's / Bv: syphonostele's + +# siphonostelic (level 80) +A B: siphonostelic / Bv: syphonostelic + +# siphonostely (level 95) +A B: siphonostely / Bv: syphonostely + +# sirenize (level 80) +A Z: sirenize / B: sirenise +A Z: sirenized / B: sirenised +A Z: sirenizing / B: sirenising +A Z: sirenizes / B: sirenises + +# sirree (level 60) +_: sirree / _v: siree +_: sirrees / _v: sirees +_: sirree's / _v: siree's + +# sisterize (level 95) +A Z: sisterize / B: sisterise +A Z: sisterizes / B: sisterises + +# sistern (level 95) +A: sistern / B: sistren + +# sizable (level 35) +A Bv C: sizable / Av B Cv: sizeable + +# sizableness (level 70) +_: sizableness / _v: sizeableness + +# sizably (level 70) +A C: sizably / Av B: sizeably + +# sizel (level 80) +A Z: sizel / B: sisel + +# skeer (level 80) +A: skeer / B: skere + +# skeletonization (level 95) +A Z: skeletonization / B: skeletonisation +A Z: skeletonizations / B: skeletonisations +A Z: skeletonization's / B: skeletonisation's + +# skeletonize (level 80) +A Z: skeletonize / B: skeletonise +A Z: skeletonized / B: skeletonised +A Z: skeletonizing / B: skeletonising +A Z: skeletonizes / B: skeletonises + +# skeletonizer (level 80) +A Z: skeletonizer / B: skeletoniser +A Z: skeletonizers / B: skeletonisers +A Z: skeletonizer's / B: skeletoniser's + +# skeptic (level 35) +A C DV: skeptic / B Cv D: sceptic +A C DV: skepticer / B Cv D: scepticer +A C DV: skepticest / B Cv D: scepticest +A C DV: skeptics / B Cv D: sceptics +A C DV: skeptic's / B Cv D: sceptic's + +# skeptical (level 20) +A C DV: skeptical / B Cv D: sceptical +A C DV: skepticaler / B Cv D: scepticaler +A C DV: skepticalest / B Cv D: scepticalest + +# skeptically (level 40) +A C DV: skeptically / B Cv D: sceptically + +# skepticism (level 35) +A C DV: skepticism / B Cv D: scepticism +A C DV: skepticisms / B Cv D: scepticisms +A C DV: skepticism's / B Cv D: scepticism's + +# skepticize (level 95) +A Z: skepticize / B: skepticise +A Z: skepticizes / B: skepticises + +# skillful (level 35) +A DV: skillful / B D: skilful + +# skillfully (level 40) +A DV: skillfully / B D: skilfully + +# skillfulness (level 60) +A DV: skillfulness / B D: skilfulness +A DV: skillfulness's / B D: skilfulness's + +# skulduggery (level 50) +_: skulduggery / _v: skullduggery +_: skulduggery's / _v: skullduggery's + +# skyer (level 80) +A: skyer / B: skyre +A: skyers / B: skyres + +# Slavicize (level 95) +A Z: Slavicize / B: Slavicise +A Z: Slavicizes / B: Slavicises +A Z: Slavicize's / B: Slavicise's + +# Slavization (level 95) +A Z: Slavization / B: Slavisation +A Z: Slavizations / B: Slavisations +A Z: Slavization's / B: Slavisation's + +# Slavize (level 95) +A Z: Slavize / B: Slavise +A Z: Slavizes / B: Slavises +A Z: Slavize's / B: Slavise's + +# Slavonicize (level 80) +A Z: Slavonicize / B: Slavonicise +A Z: Slavonicized / B: Slavonicised +A Z: Slavonicized's / B: Slavonicised's +A Z: Slavonicizing / B: Slavonicising +A Z: Slavonicizes / B: Slavonicises +A Z: Slavonicize's / B: Slavonicise's +A Z: Slavonicizing's / B: Slavonicising's + +# Slavonize (level 80) +A Z: Slavonize / B: Slavonise +A Z: Slavonized / B: Slavonised +A Z: Slavonized's / B: Slavonised's +A Z: Slavonizing / B: Slavonising +A Z: Slavonizes / B: Slavonises +A Z: Slavonize's / B: Slavonise's +A Z: Slavonizing's / B: Slavonising's + +# sle (level 80) +A: sle / B: slae + +# slenderize (level 50) +A Z: slenderize / B: slenderise +A Z: slenderized / B: slenderised +A Z: slenderizing / B: slenderising +A Z: slenderizes / B: slenderises + +# sley (level 35) +A: slier / Av B: slyer +A: sliest / Av B: slyest + +# sloganize (level 80) +A Z: sloganize / B: sloganise +A Z: sloganized / B: sloganised +A Z: sloganizing / B: sloganising +A Z: sloganizes / B: sloganises +A Z: sloganizings / B: sloganisings + +# sluggardize (level 80) +A Z: sluggardize / B: sluggardise +A Z: sluggardized / B: sluggardised +A Z: sluggardizing / B: sluggardising +A Z: sluggardizes / B: sluggardises + +# slumberous (level 50) +_: slumberous / _v: slumbrous + +# slyly (level 40) +A B C: slyly / AV Bv: slily + +# smidgen (level 35) +A B C: smidgen / AV1 Bv Cv: smidgeon / AV2 Cv: smidge / AV3 Bv Cv: smidgin +A B C: smidgens / AV1 Bv Cv: smidgeons / AV2 Cv: smidges / AV3 Bv Cv: smidgins +A B C: smidgen's / AV1 Bv Cv: smidgeon's / AV2 Cv: smidge's / AV3 Bv Cv: smidgin's + +# smolder (level 35) +A Cv: smolder / Av B C: smoulder +A Cv: smoldered / Av B C: smouldered +A Cv: smoldering / Av B C: smouldering +A Cv: smolders / Av B C: smoulders +A Cv: smolder's / Av B C: smoulder's + +# smoothie (level 55) +_: smoothie / _v: smoothy +_: smoothie's / _v: smoothy's + +# snivel (level 50) +A: sniveled / B: snivelled +A: sniveling / B: snivelling +A: snivelings / B: snivellings + +# sniveler (level 60) +A: sniveler / B: sniveller +A: snivelers / B: snivellers +A: sniveler's / B: sniveller's + +# snobsniveling (level 99) +A: snobsniveling / B: snobsnivelling + +# snorkel (level 35) +A Cv: snorkeled / B C: snorkelled +A Cv: snorkeling / B C: snorkelling + +# snowplow (level 35) +A C: snowplow / B Cv: snowplough +A C: snowplow's / B Cv: snowplough's +A C: snowplows / B Cv: snowploughs + +# snowshed (level 50) +A: snowshed / B: snowshoed + +# snuffcolored (level 80) +A: snuffcolored / B: snuffcoloured + +# sol (level 10) +_: so | :1 +_: sol / _V: so | :2 +_: sols / _V: sos | :2 +_: sol's / _V: so's | :2 +_: sol | :3 +_: sols | :3 +_: sol's | :3 + +# soberize (level 80) +A Z: soberize / B: soberise +A Z: soberized / B: soberised +A Z: soberizing / B: soberising +A Z: soberizes / B: soberises + +# sobriquet (level 50) +_: sobriquet / _V: soubriquet +_: sobriquets / _V: soubriquets +_: sobriquet's / _V: soubriquet's + +# socialization (level 50) +A Z: socialization / B: socialisation +A Z: socializations / B: socialisations +A Z: socialization's / B: socialisation's + +# socialize (level 35) +A Z: socialize / B: socialise +A Z: socialized / B: socialised +A Z: socializing / B: socialising +A Z: socializes / B: socialises + +# socializer (level 70) +A Z: socializer / B: socialiser +A Z: socializer's / B: socialiser's + +# sockdologizing (level 99) +A Z: sockdologizing / B: sockdologising + +# Socratize (level 80) +A Z: Socratize / B: Socratise +A Z: Socratized / B: Socratised +A Z: Socratized's / B: Socratised's +A Z: Socratizing / B: Socratising +A Z: Socratizes / B: Socratises +A Z: Socratize's / B: Socratise's +A Z: Socratizing's / B: Socratising's + +# sodomize (level 55) +A Z: sodomize / B: sodomise +A Z: sodomized / B: sodomised +A Z: sodomizing / B: sodomising +A Z: sodomizes / B: sodomises + +# softy (level 40) +_: softy / _v: softie +_: softy's / _v: softie's + +# soignee (level 99) +_: soignee + +# solarization (level 80) +A Z: solarization / B: solarisation +A Z: solarizations / B: solarisations +A Z: solarization's / B: solarisation's + +# solarize (level 70) +A Z: solarize / B: solarise +A Z: solarized / B: solarised +A Z: solarizing / B: solarising +A Z: solarizes / B: solarises + +# soldierize (level 95) +A Z: soldierize / B: soldierise +A Z: soldierizes / B: soldierises + +# solecize (level 80) +A Z: solecize / B: solecise +A Z: solecized / B: solecised +A Z: solecizing / B: solecising +A Z: solecizes / B: solecises + +# solemnization (level 55) +A Z: solemnization / B: solemnisation +A Z: solemnizations / B: solemnisations +A Z: solemnization's / B: solemnisation's + +# solemnize (level 50) +A Z: solemnize / B: solemnise +A Z: solemnized / B: solemnised +A Z: solemnizing / B: solemnising +A Z: solemnizes / B: solemnises + +# solemnizer (level 80) +A Z: solemnizer / B: solemniser +A Z: solemnizers / B: solemnisers +A Z: solemnizer's / B: solemniser's + +# soliloquization (level 99) +A Z: soliloquization / B: soliloquisation + +# soliloquize (level 50) +A Z: soliloquize / B: soliloquise +A Z: soliloquized / B: soliloquised +A Z: soliloquizing / B: soliloquising +A Z: soliloquizes / B: soliloquises +A Z: soliloquizings / B: soliloquisings +A Z: soliloquizing's / B: soliloquising's + +# soliloquizer (level 80) +A Z: soliloquizer / B: soliloquiser +A Z: soliloquizers / B: soliloquisers +A Z: soliloquizer's / B: soliloquiser's + +# soliloquizingly (level 95) +A Z: soliloquizingly / B: soliloquisingly + +# solmization (level 70) +A Z: solmization / B: solmisation +A Z: solmizations / B: solmisations +A Z: solmization's / B: solmisation's + +# solonization (level 80) +A Z: solonization / B: solonisation +A Z: solonizations / B: solonisations + +# solubilization (level 80) +A Z: solubilization / B: solubilisation +A Z: solubilizations / B: solubilisations +A Z: solubilization's / B: solubilisation's + +# solubilize (level 70) +A Z: solubilize / B: solubilise +A Z: solubilized / B: solubilised +A Z: solubilizing / B: solubilising +A Z: solubilizes / B: solubilises + +# solutize (level 95) +A Z: solutize / B: solutise +A Z: solutizes / B: solutises + +# solutizer (level 95) +A Z: solutizer / B: solutiser +A Z: solutizers / B: solutisers +A Z: solutizer's / B: solutiser's + +# somber (level 35) +A: somber / Av B: sombre +A: somberer / Av B: sombrer +A: somberest / Av B: sombrest + +# somberish (level 95) +A: somberish / B: sombreish + +# somberly (level 40) +A: somberly / Av B: sombrely + +# somberness (level 55) +A: somberness / Av B: sombreness +A: sombernesses / Av B: sombrenesses +A: somberness's / Av B: sombreness's + +# somesthesia (level 95) +A: somesthesia / B: somaesthesia + +# somesthesis (level 95) +A: somesthesis / B: somaesthesis + +# somniloquize (level 80) +A Z: somniloquize / B: somniloquise +A Z: somniloquized / B: somniloquised +A Z: somniloquizing / B: somniloquising +A Z: somniloquizes / B: somniloquises + +# sonantized (level 95) +A Z: sonantized / B: sonantised +A Z: sonantizeds / B: sonantiseds +A Z: sonantized's / B: sonantised's + +# sonnetization (level 95) +A Z: sonnetization / B: sonnetisation +A Z: sonnetization's / B: sonnetisation's + +# sonnetize (level 80) +A Z: sonnetize / B: sonnetise +A Z: sonnetized / B: sonnetised +A Z: sonnetizing / B: sonnetising +A Z: sonnetizes / B: sonnetises + +# sorbitization (level 80) +A Z: sorbitization / B: sorbitisation +A Z: sorbitizations / B: sorbitisations + +# sorbitize (level 80) +A Z: sorbitize / B: sorbitise +A Z: sorbitized / B: sorbitised +A Z: sorbitizing / B: sorbitising +A Z: sorbitizes / B: sorbitises + +# sord (level 80) +A: sord / B: sourd + +# sordine (level 70) +A: sordine / B: sourdine +A: sordines / B: sourdines + +# sororize (level 80) +A Z: sororize / B: sororise +A Z: sororized / B: sororised +A Z: sororizing / B: sororising +A Z: sororizes / B: sororises + +# sory (level 95) +A: sory / B: soury + +# souffled (level 80) +A: souffled / B: soufflaed + +# soulter (level 95) +A: soulter / B: soultre + +# southernize (level 80) +A Z: southernize / B: southernise +A Z: southernized / B: southernised +A Z: southernizing / B: southernising +A Z: southernizes / B: southernises + +# Sovietization (level 70) +A Z: Sovietization / B: Sovietisation +A Z: Sovietization's / B: Sovietisation's +A Z: sovietization / B: sovietisation +A Z: sovietizations / B: sovietisations +A Z: sovietization's / B: sovietisation's + +# Sovietize (level 70) +A Z: Sovietize / B: Sovietise +A Z: Sovietized / B: Sovietised +A Z: Sovietizing / B: Sovietising +A Z: sovietize / B: sovietise +A Z: sovietized / B: sovietised +A Z: sovietizing / B: sovietising +A Z: sovietizes / B: sovietises + +# soy (level 50) +_: soy | sauce +_: soy / _V: soya | soybean +_: soy's / _V: soya's | soybean + +# spacey (level 40) +_: spacey / _V: spacy + +# spanemia (level 80) +A: spanemia / B: spanaemia + +# spanemic (level 80) +A: spanemic / B: spanaemic + +# Spaniardization (level 95) +A Z: Spaniardization / B: Spaniardisation +A Z: Spaniardizations / B: Spaniardisations +A Z: Spaniardization's / B: Spaniardisation's + +# Spaniardize (level 95) +A Z: Spaniardize / B: Spaniardise +A Z: Spaniardizes / B: Spaniardises +A Z: Spaniardize's / B: Spaniardise's + +# spaniolize (level 80) +A Z: spaniolize / B: spaniolise +A Z: spaniolized / B: spaniolised +A Z: spaniolizing / B: spaniolising +A Z: spaniolizes / B: spaniolises + +# Spanishize (level 95) +A Z: Spanishize / B: Spanishise +A Z: Spanishizes / B: Spanishises +A Z: Spanishize's / B: Spanishise's + +# spanopnea (level 95) +A: spanopnea / B: spanopnoea + +# sparers (level 80) +A: sparers / B: sparres + +# Spartanize (level 95) +A Z: Spartanize / B: Spartanise +A Z: Spartanizes / B: Spartanises +A Z: Spartanize's / B: Spartanise's + +# spatialization (level 95) +A Z: spatialization / B: spatialisation +A Z: spatializations / B: spatialisations +A Z: spatialization's / B: spatialisation's + +# spatialize (level 95) +A Z: spatialize / B: spatialise +A Z: spatializes / B: spatialises + +# specialization (level 35) +A Z: specialization / B: specialisation +A Z: specializations / B: specialisations +A Z: specialization's / B: specialisation's + +# specialize (level 20) +A Z: specialize / B: specialise +A Z: specialized / B: specialised +A Z: specializing / B: specialising +A Z: specializes / B: specialises + +# specializer (level 80) +A Z: specializer / B: specialiser +A Z: specializers / B: specialisers +A Z: specializer's / B: specialiser's + +# specialty (level 20) +A C: specialty / B: speciality +A C: specialties / B: specialities +A C: specialty's / B: speciality's + +# specificize (level 95) +A Z: specificize / B: specificise +A Z: specificizes / B: specificises + +# specimenize (level 95) +A Z: specimenize / B: specimenise +A Z: specimenizes / B: specimenises + +# specter (level 35) +A: specter / B: spectre +A: specters / B: spectres +A: specter's / B: spectre's + +# spectered (level 95) +A: spectered / B: spectred + +# specterlike (level 95) +A: specterlike / B: spectrelike +A: specterlikes / B: spectrelikes +A: specterlike's / B: spectrelike's + +# spectrocolorimetry (level 95) +A: spectrocolorimetry / B: spectrocolourimetry +A: spectrocolorimetry's / B: spectrocolourimetry's + +# speer (level 80) +A: speer / B: spere +A: speer's / B: spere's + +# spelean (level 70) +A: spelean / B: spelaean + +# speleological (level 55) +A B: speleological / B-: spelaeological + +# speleothem (level 80) +A: speleothem / B: spelaeothem +A: speleothems / B: spelaeothems + +# spelled (level 10) +A B. Z: spelled / B Zv: spelt | +A B: spelt | (-) species of wheat + +# spermatorrhea (level 80) +A: spermatorrhea / B: spermatorrhoea +A: spermatorrheas / B: spermatorrhoeas + +# speronares (level 95) +A: speronares / B: speronaroes + +# sphenethmoid (level 95) +A: sphenethmoid / B: sphenoethmoid + +# sphenethmoidal (level 95) +A: sphenethmoidal / B: sphenoethmoidal + +# spherocrystal (level 80) +A: spherocrystal / B: sphaerocrystal + +# spheroidization (level 80) +A Z: spheroidization / B: spheroidisation +A Z: spheroidizations / B: spheroidisations + +# spheroidize (level 80) +A Z: spheroidize / B: spheroidise +A Z: spheroidized / B: spheroidised +A Z: spheroidizing / B: spheroidising +A Z: spheroidizes / B: spheroidises + +# spherosome (level 95) +A: spherosome / B: sphaerosome + +# spic (level 55) +_: spic / _V: spick / _-: spik +_: spics / _V: spicks / _-: spiks +_: spic's / _V: spick's / _-: spik's + +# Spiers (level 70) +A: Spiers / B: Spires +A: Spiers's / B: Spires's + +# spilled (level 35) +A B. C: spilled / AV B Cv: spilt + +# spinule (level 70) +A: spinule / B: spinulae + +# spiral (level 35) +A Cv: spiraled / B C: spiralled +A Cv: spiraling / B C: spiralling + +# spiralization (level 95) +A Z: spiralization / B: spiralisation +A Z: spiralizations / B: spiralisations +A Z: spiralization's / B: spiralisation's + +# spiralize (level 95) +A Z: spiralize / B: spiralise +A Z: spiralizes / B: spiralises + +# spirea (level 50) +A C: spirea / Av B Cv: spiraea +A C: spireas / Av B Cv: spiraeas +A C: spirea's / Av B Cv: spiraea's + +# spiritize (level 95) +A Z: spiritize / B: spiritise +A Z: spiritizes / B: spiritises + +# spiritualization (level 80) +A Z: spiritualization / B: spiritualisation +A Z: spiritualizations / B: spiritualisations +A Z: spiritualization's / B: spiritualisation's + +# spiritualize (level 70) +A Z: spiritualize / B: spiritualise +A Z: spiritualized / B: spiritualised +A Z: spiritualizing / B: spiritualising +A Z: spiritualizes / B: spiritualises + +# spiritualizer (level 80) +A Z: spiritualizer / B: spiritualiser +A Z: spiritualizers / B: spiritualisers +A Z: spiritualizer's / B: spiritualiser's + +# spirochetal (level 80) +A: spirochetal / B: spirochaetal + +# spirochete (level 60) +A C: spirochete / B: spirochaete +A C: spirochetes / B: spirochaetes +A C: spirochete's / B: spirochaete's + +# spirochetosis (level 70) +A: spirochetosis / B: spirochaetosis +A: spirochetoses / B: spirochaetoses +A: spirochetosis's / B: spirochaetosis's + +# spirochetotic (level 95) +A: spirochetotic / B: spirochaetotic + +# splanchnocele (level 80) +A: splanchnocele / B: splanchnocoele + +# splendor (level 35) +A Cv DV: splendor / B C D: splendour +A Cv DV: splendors / B C D: splendours +A Cv DV: splendor's / B C D: splendour's + +# splendorproof (level 95) +A: splendorproof / B: splendourproof + +# splenectomized (level 80) +A Z: splenectomized / B: splenectomised + +# splenization (level 80) +A Z: splenization / B: splenisation +A Z: splenizations / B: splenisations + +# spoiled (level 20) +A B. Z: spoiled / B Zv: spoilt + +# spumoni (level 50) +_: spumoni / _V: spumone +_: spumonis / _V: spumones +_: spumoni's / _V: spumone's + +# spyer (level 95) +A: spyer / B: spyre + +# squame (level 70) +A: squame / B: squamae + +# squamule (level 80) +A: squamule / B: squamulae + +# Squier (level 95) +A: Squier / B: Squire +A: Squier's / B: Squire's + +# squirrel (level 35) +A Cv: squirreled / B C: squirrelled +A Cv: squirreling / B C: squirrelling + +# stabilizable (level 99) +A Z: stabilizable / B: stabilisable + +# stabilization (level 50) +A Z: stabilization / B: stabilisation +A Z: stabilizations / B: stabilisations +A Z: stabilization's / B: stabilisation's + +# stabilizator (level 80) +A Z: stabilizator / B: stabilisator +A Z: stabilizators / B: stabilisators + +# stabilize (level 35) +A Z: stabilize / B: stabilise +A Z: stabilized / B: stabilised +A Z: stabilizing / B: stabilising +A Z: stabilizes / B: stabilises + +# stabilizer (level 50) +A Z: stabilizer / B: stabiliser +A Z: stabilizers / B: stabilisers +A Z: stabilizer's / B: stabiliser's + +# stageyness (level 99) +_: stageyness + +# stagy (level 55) +_: stagy / _v: stagey + +# stallionize (level 95) +A Z: stallionize / B: stallionise +A Z: stallionizes / B: stallionises + +# stalwartize (level 95) +A Z: stalwartize / B: stalwartise +A Z: stalwartizes / B: stalwartises + +# stammelcolor (level 95) +A: stammelcolor / B: stammelcolour + +# standardizable (level 95) +A Z: standardizable / B: standardisable +A Z: standardizables / B: standardisables +A Z: standardizable's / B: standardisable's + +# standardization (level 35) +A Z: standardization / B: standardisation +A Z: standardizations / B: standardisations +A Z: standardization's / B: standardisation's + +# standardize (level 20) +A Z: standardize / B: standardise +A Z: standardized / B: standardised +A Z: standardizing / B: standardising +A Z: standardizes / B: standardises + +# standardizer (level 80) +A Z: standardizer / B: standardiser +A Z: standardizers / B: standardisers +A Z: standardizer's / B: standardiser's + +# stanzes (level 80) +A: stanzes / B: stanzoes + +# stapedectomized (level 95) +A Z: stapedectomized / B: stapedectomised + +# staphyledema (level 95) +A: staphyledema / B: staphyloedema + +# statisticize (level 95) +A Z: statisticize / B: statisticise +A Z: statisticizes / B: statisticises + +# stearrhea (level 95) +A: stearrhea / B: stearrhoea + +# steatorrhea (level 80) +A: steatorrhea / B: steatorrhoea +A: steatorrheas / B: steatorrhoeas + +# stele (level 70) +A: stele / B: stelae + +# stencil (level 35) +A: stenciled / B: stencilled +A: stenciling / B: stencilling + +# stenciler (level 80) +A: stenciler / B: stenciller +A: stencilers / B: stencillers +A: stenciler's / B: stenciller's + +# stencilize (level 95) +A Z: stencilize / B: stencilise + +# stenopeic (level 80) +A: stenopeic / B: stenopaeic + +# stentor (level 70) +A: stentor / B: stentour +A: stentors / B: stentours + +# stercoremia (level 95) +A: stercoremia / B: stercoraemia + +# stere (level 70) +A: stere / B: stree + +# sterilizability (level 95) +A Z: sterilizability / B: sterilisability +A Z: sterilizabilities / B: sterilisabilities +A Z: sterilizability's / B: sterilisability's + +# sterilizable (level 95) +A Z: sterilizable / B: sterilisable +A Z: sterilizabler / B: sterilisabler +A Z: sterilizables / B: sterilisables +A Z: sterilizablest / B: sterilisablest +A Z: sterilizable's / B: sterilisable's + +# sterilization (level 35) +A Z: sterilization / B: sterilisation +A Z: sterilizations / B: sterilisations +A Z: sterilization's / B: sterilisation's + +# sterilize (level 35) +A Z: sterilize / B: sterilise +A Z: sterilized / B: sterilised +A Z: sterilizing / B: sterilising +A Z: sterilizes / B: sterilises + +# sterilizer (level 50) +A Z: sterilizer / B: steriliser +A Z: sterilizers / B: sterilisers +A Z: sterilizer's / B: steriliser's + +# stert (level 95) +A: stert / B: stret + +# stigmatization (level 55) +A Z: stigmatization / B: stigmatisation +A Z: stigmatizations / B: stigmatisations +A Z: stigmatization's / B: stigmatisation's + +# stigmatize (level 40) +A Z: stigmatize / B: stigmatise +A Z: stigmatized / B: stigmatised +A Z: stigmatizing / B: stigmatising +A Z: stigmatizes / B: stigmatises + +# stigmatizer (level 80) +A Z: stigmatizer / B: stigmatiser +A Z: stigmatizers / B: stigmatisers +A Z: stigmatizer's / B: stigmatiser's + +# stilbestrol (level 70) +A: stilbestrol / B: stilboestrol +A: stilbestrols / B: stilboestrols +A: stilbestrol's / B: stilboestrol's + +# stimuli (level 35) +_: stimuli / _-: stimuluses + +# stipule (level 70) +A: stipule / B: stipulae + +# stockinette (level 60) +_: stockinette / _v: stockinet +_: stockinettes / _v: stockinets +_: stockinette's / _v: stockinet's + +# stogie (level 55) +_: stogie / _.: stogy +_: stogie's / _.: stogy's + +# stomatodeum (level 80) +A: stomatodeum / B: stomatodaeum + +# stomodea (level 80) +A: stomodea / B: stomodaea + +# stomodeal (level 80) +A: stomodeal / B: stomodaeal + +# stomodeum (level 70) +A: stomodeum / B: stomodaeum +A: stomodeums / B: stomodaeums +A: stomodeum's / B: stomodaeum's + +# stony (level 35) +_: stony / _V: stoney + +# stor (level 70) +A: stor / B: stour / Bv: stoor + +# storier (level 95) +A: storier / B: stourier + +# story (level 10) +A B: story | book +A B: stories | book +A B: story's | book +A Cv DV: story / AV B C D: storey | level of building +A Cv DV: stories / AV B C D: storeys | level of building +A Cv DV: story's / AV B C D: storey's | level of building + +# stower (level 80) +A: stower / B: stowre +A: stowers / B: stowres + +# straitjacket (level 35) +A B: straitjacket / AV Bv: straightjacket +A B: straitjacketed / AV Bv: straightjacketed +A B: straitjacketing / AV Bv: straightjacketing +A B: straitjackets / AV Bv: straightjackets +A B: straitjacket's / AV Bv: straightjacket's + +# strata (level 35) +_: strata / _V: stratums + +# strobile (level 70) +A: strobile / B: strobilae + +# strobilization (level 80) +A Z: strobilization / B: strobilisation +A Z: strobilizations / B: strobilisations +A Z: strobilization's / B: strobilisation's + +# structuralization (level 80) +A Z: structuralization / B: structuralisation +A Z: structuralizations / B: structuralisations +A Z: structuralization's / B: structuralisation's + +# structuralize (level 80) +A Z: structuralize / B: structuralise +A Z: structuralizes / B: structuralises + +# strychninization (level 95) +A Z: strychninization / B: strychninisation +A Z: strychninizations / B: strychninisations +A Z: strychninization's / B: strychninisation's + +# strychninize (level 95) +A Z: strychninize / B: strychninise +A Z: strychninizes / B: strychninises + +# stumor (level 95) +A: stumor / B: stumour + +# sty (level 50) +_: sty | :1 +_: sties | :1 +_: sty's | :1 +_: sty | :2 +_: stied | :2 +_: stying | :2 +_: sties | :2 +_: sty / _v: stye | :3 +_: sties / _v: styes | :3 +_: sty's / _v: stye's | :3 + +# stylization (level 70) +A Z: stylization / B: stylisation +A Z: stylizations / B: stylisations +A Z: stylization's / B: stylisation's + +# stylize (level 50) +A Z: stylize / B: stylise +A Z: stylized / B: stylised +A Z: stylizing / B: stylising +A Z: stylizes / B: stylises + +# stylizer (level 80) +A Z: stylizer / B: styliser +A Z: stylizers / B: stylisers +A Z: stylizer's / B: styliser's + +# stylopized (level 80) +A Z: stylopized / B: stylopised + +# stymie (level 40) +_: stymie / _-: stymy +_: stymied / _-: stymyed +_: stymie's / _-: stymy's + +# subarmor (level 95) +A: subarmor / B: subarmour +A: subarmors / B: subarmours +A: subarmor's / B: subarmour's + +# subcaliber (level 80) +A: subcaliber / B: subcalibre + +# subcategorizing (level 80) +A Z: subcategorizing / B: subcategorising + +# subcenter (level 80) +A: subcenter / B: subcentre + +# subduer (level 70) +A: subduer / B: subdure + +# suberate (level 80) +A: suberate / B: subaerate + +# suberization (level 80) +A Z: suberization / B: suberisation +A Z: suberizations / B: suberisations +A Z: suberization's / B: suberisation's + +# suberize (level 80) +A Z: suberize / B: suberise +A Z: suberized / B: suberised +A Z: suberizing / B: suberising +A Z: suberizes / B: suberises + +# subesophageal (level 95) +A: subesophageal / B: suboesophageal + +# subetheric (level 95) +A: subetheric / B: subaetheric + +# subflavor (level 95) +A: subflavor / B: subflavour +A: subflavors / B: subflavours +A: subflavor's / B: subflavour's + +# subitize (level 80) +A Z: subitize / B: subitise +A Z: subitized / B: subitised +A Z: subitizing / B: subitising +A Z: subitizes / B: subitises + +# subjectivization (level 80) +A Z: subjectivization / B: subjectivisation +A Z: subjectivizations / B: subjectivisations +A Z: subjectivization's / B: subjectivisation's + +# subjectivize (level 80) +A Z: subjectivize / B: subjectivise +A Z: subjectivized / B: subjectivised +A Z: subjectivizing / B: subjectivising +A Z: subjectivizes / B: subjectivises + +# sublimize (level 80) +A Z: sublimize / B: sublimise +A Z: sublimized / B: sublimised +A Z: sublimizing / B: sublimising +A Z: sublimizes / B: sublimises + +# subminiaturization (level 80) +A Z: subminiaturization / B: subminiaturisation +A Z: subminiaturization's / B: subminiaturisation's + +# subminiaturize (level 70) +A Z: subminiaturize / B: subminiaturise +A Z: subminiaturized / B: subminiaturised +A Z: subminiaturizing / B: subminiaturising +A Z: subminiaturizes / B: subminiaturises + +# subpoena (level 40) +_: subpoena / _-: subpena +_: subpoenaed / _-: subpenaed +_: subpoenaing / _-: subpenaing +_: subpoenas / _-: subpenas +_: subpoena's / _-: subpena's + +# subpulverizer (level 95) +A Z: subpulverizer / B: subpulveriser +A Z: subpulverizers / B: subpulverisers +A Z: subpulverizer's / B: subpulveriser's + +# subsidizable (level 80) +A Z: subsidizable / B: subsidisable +A Z: subsidizables / B: subsidisables +A Z: subsidizable's / B: subsidisable's + +# subsidization (level 50) +A Z: subsidization / B: subsidisation +A Z: subsidizations / B: subsidisations +A Z: subsidization's / B: subsidisation's + +# subsidize (level 20) +A Z: subsidize / B: subsidise +A Z: subsidized / B: subsidised +A Z: subsidizing / B: subsidising +A Z: subsidizes / B: subsidises + +# subsidizer (level 55) +A Z: subsidizer / B: subsidiser +A Z: subsidizers / B: subsidisers +A Z: subsidizer's / B: subsidiser's + +# subspecialize (level 70) +A Z: subspecialize / B: subspecialise +A Z: subspecializes / B: subspecialises +A Z: subspecialize's / B: subspecialise's + +# subspecialty (level 70) +A: subspecialty / B: subspeciality +A: subspecialties / B: subspecialities +A: subspecialty's / B: subspeciality's + +# substandardize (level 95) +A Z: substandardize / B: substandardise +A Z: substandardizes / B: substandardises + +# substantialize (level 70) +A Z: substantialize / B: substantialise +A Z: substantialized / B: substantialised +A Z: substantializing / B: substantialising +A Z: substantializes / B: substantialises + +# substantivize (level 80) +A Z: substantivize / B: substantivise +A Z: substantivized / B: substantivised +A Z: substantivizing / B: substantivising +A Z: substantivizes / B: substantivises + +# substerilization (level 99) +A Z: substerilization / B: substerilisation + +# subterraneanize (level 95) +A Z: subterraneanize / B: subterraneanise +A Z: subterraneanizes / B: subterraneanises + +# subtilization (level 80) +A Z: subtilization / B: subtilisation +A Z: subtilizations / B: subtilisations +A Z: subtilization's / B: subtilisation's + +# subtilize (level 70) +A Z: subtilize / B: subtilise +A Z: subtilized / B: subtilised +A Z: subtilizing / B: subtilising +A Z: subtilizes / B: subtilises + +# subtilizer (level 95) +A Z: subtilizer / B: subtiliser +A Z: subtilizers / B: subtilisers + +# subtotal (level 50) +A: subtotaled / B: subtotalled +A: subtotaling / B: subtotalling + +# suburbanization (level 70) +A Z: suburbanization / B: suburbanisation +A Z: suburbanizations / B: suburbanisations +A Z: suburbanization's / B: suburbanisation's + +# suburbanize (level 70) +A Z: suburbanize / B: suburbanise +A Z: suburbanized / B: suburbanised +A Z: suburbanizing / B: suburbanising +A Z: suburbanizes / B: suburbanises + +# subvitalization (level 95) +A Z: subvitalization / B: subvitalisation +A Z: subvitalization's / B: subvitalisation's + +# subvitalized (level 95) +A Z: subvitalized / B: subvitalised +A Z: subvitalizedder / B: subvitalisedder +A Z: subvitalizeddest / B: subvitaliseddest +A Z: subvitalizeds / B: subvitaliseds +A Z: subvitalized's / B: subvitalised's + +# succor (level 35) +A DV: succor / B D: succour +A DV: succored / B D: succoured +A DV: succoring / B D: succouring +A DV: succors / B D: succours +A DV: succor's / B D: succour's + +# succorable (level 80) +A DV: succorable / B D: succourable +A Dv: succorables / B D: succourables +A DV: succorable's / B D: succourable's + +# succorer (level 80) +A DV: succorer / B D: succourer +A DV: succorers / B D: succourers +A DV: succorer's / B D: succourer's + +# succorful (level 95) +A DV: succorful / B D: succourful + +# succorless (level 70) +A DV: succorless / B D: succourless + +# succorlesses (level 99) +A: succorlesses / B: succourlesses + +# succorrhea (level 95) +A: succorrhea / B: succorrhoea + +# succube (level 80) +A: succube / B: succubae + +# suers (level 80) +A: suers / B: sures + +# suggestionize (level 95) +A Z: suggestionize / B: suggestionise +A Z: suggestionizes / B: suggestionises + +# sulcalize (level 80) +A Z: sulcalize / B: sulcalise +A Z: sulcalized / B: sulcalised +A Z: sulcalizing / B: sulcalising +A Z: sulcalizes / B: sulcalises + +# sulfate (level 50) +A Cv: sulfate / B C: sulphate +A Cv: sulfate's / B C: sulphate's +A Cv: sulfates / B C: sulphates + +# sulfatize (level 70) +A Z: sulfatize / B: sulfatise +A Z: sulfatizes / B: sulfatises + +# sulfide (level 50) +A Cv: sulfide / B C: sulphide +A Cv: sulfide's / B C: sulphide's +A Cv: sulfides / B C: sulphides + +# sulfur (level 35) +A BV Cv Dv: sulfur / B C D: sulphur +A BV Cv Dv: sulfured / B C D: sulphured +A BV Cv Dv: sulfuring / B C D: sulphuring +A BV Cv Dv: sulfurs / B C D: sulphurs +A BV Cv Dv: sulfur's / B C D: sulphur's +A B: sulfur | (-) Chemistry +A B: sulfured | (-) Chemistry +A B: sulfuring | (-) Chemistry +A B: sulfurs | (-) Chemistry +A B: sulfur's | (-) Chemistry + +# sulfuric (level 50) +A Cv Dv: sulfuric / B C D: sulphuric + +# sulfurization (level 80) +A: sulfurization / B: sulphurisation / Z: sulphurization +A: sulfurizations / B: sulphurisations / Z: sulphurizations +A: sulfurization's / B: sulphurisation's / Z: sulphurization's + +# sulfurize (level 70) +A: sulfurize / B: sulphurise / Z: sulphurize +A: sulfurized / B: sulphurised / Z: sulphurized +A: sulfurizing / B: sulphurising / Z: sulphurizing +A: sulfurizes / B: sulphurises / Z: sulphurizes + +# sulfurous (level 50) +A Cv: sulfurous / B C: sulphurous + +# sultanize (level 95) +A Z: sultanize / B: sultanise +A Z: sultanizes / B: sultanises + +# sumac (level 50) +_: sumac / _V: sumach +_: sumacs / _V: sumaches +_: sumac's / _V: sumach's + +# summarizable (level 80) +A Z: summarizable / B: summarisable + +# summarization (level 70) +A Z: summarization / B: summarisation +A Z: summarizations / B: summarisations +A Z: summarization's / B: summarisation's + +# summarize (level 20) +A Z: summarize / B: summarise +A Z: summarized / B: summarised +A Z: summarizing / B: summarising +A Z: summarizes / B: summarises + +# summarizer (level 70) +A Z: summarizer / B: summariser +A Z: summarizers / B: summarisers +A Z: summarizer's / B: summariser's + +# summerize (level 95) +A Z: summerize / B: summerise +A Z: summerizes / B: summerises + +# superacknowledgment (level 95) +A: superacknowledgment / B: superacknowledgement +A: superacknowledgments / B: superacknowledgements +A: superacknowledgment's / B: superacknowledgement's + +# supercanonization (level 95) +A Z: supercanonization / B: supercanonisation +A Z: supercanonizations / B: supercanonisations +A Z: supercanonization's / B: supercanonisation's + +# supercarbonization (level 95) +A Z: supercarbonization / B: supercarbonisation +A Z: supercarbonizations / B: supercarbonisations +A Z: supercarbonization's / B: supercarbonisation's + +# supercarbonize (level 95) +A Z: supercarbonize / B: supercarbonise +A Z: supercarbonizes / B: supercarbonises + +# supercivilization (level 80) +A Z: supercivilization / B: supercivilisation +A Z: supercivilizations / B: supercivilisations +A Z: supercivilization's / B: supercivilisation's + +# supercivilized (level 80) +A Z: supercivilized / B: supercivilised +A Z: supercivilizeds / B: superciviliseds +A Z: supercivilized's / B: supercivilised's + +# superemphasize (level 95) +A Z: superemphasize / B: superemphasise +A Z: superemphasizes / B: superemphasises + +# superfetation (level 70) +A: superfetation / B: superfoetation +A: superfetations / B: superfoetations + +# superficialize (level 80) +A Z: superficialize / B: superficialise +A Z: superficialized / B: superficialised +A Z: superficializing / B: superficialising +A Z: superficializes / B: superficialises + +# superhumanize (level 80) +A Z: superhumanize / B: superhumanise +A Z: superhumanized / B: superhumanised +A Z: superhumanizing / B: superhumanising +A Z: superhumanizes / B: superhumanises + +# supernaturalize (level 80) +A Z: supernaturalize / B: supernaturalise +A Z: supernaturalized / B: supernaturalised +A Z: supernaturalizing / B: supernaturalising +A Z: supernaturalizes / B: supernaturalises + +# superorganization (level 95) +A Z: superorganization / B: superorganisation +A Z: superorganizations / B: superorganisations +A Z: superorganization's / B: superorganisation's + +# superorganize (level 95) +A Z: superorganize / B: superorganise +A Z: superorganizes / B: superorganises + +# supersensitization (level 95) +A Z: supersensitization / B: supersensitisation +A Z: supersensitizations / B: supersensitisations +A Z: supersensitization's / B: supersensitisation's + +# supersensitize (level 95) +A Z: supersensitize / B: supersensitise + +# supersensitized (level 95) +A Z: supersensitized / B: supersensitised + +# supersensitizing (level 95) +A Z: supersensitizing / B: supersensitising + +# superspecialize (level 95) +A Z: superspecialize / B: superspecialise +A Z: superspecializes / B: superspecialises + +# supersubtilized (level 95) +A Z: supersubtilized / B: supersubtilised +A Z: supersubtilizeds / B: supersubtiliseds +A Z: supersubtilized's / B: supersubtilised's + +# supersulphurize (level 95) +A Z: supersulphurize / B: supersulphurise +A Z: supersulphurizes / B: supersulphurises + +# surgerize (level 95) +A Z: surgerize / B: surgerise +A Z: surgerizes / B: surgerises + +# surprizal (level 70) +A Z: surprizal / B: surprisal + +# sursize (level 95) +A Z: sursize / B: sursise + +# surveil (level 70) +_: surveil / _V: surveille +## ODE lists surveille as a variant, m-w doesn't only acknowledges +## "surveil" + +# swab (level 35) +_: swab / _-: swob +_: swabbed / _-: swobbed +_: swabbing / _-: swobbing +_: swabs / _-: swobs +_: swab's / _-: swob's + +# sweepstakes (level 35) +A Bv C: sweepstakes / AV B Cv: sweepstake / AV: sweep-stake +A Bv C: sweepstakes's / AV B Cv: sweepstake's / AV: sweep-stake's + +# sweetbrier (level 50) +_: sweetbrier / _v: sweetbriar +_: sweetbriers / _v: sweetbriars +_: sweetbrier's / _v: sweetbriar's + +# swivel (level 35) +A: swiveled / B: swivelled +A: swiveling / B: swivelling + +# sycophantize (level 80) +A Z: sycophantize / B: sycophantise +A Z: sycophantized / B: sycophantised +A Z: sycophantizing / B: sycophantising +A Z: sycophantizes / B: sycophantises + +# syllabize (level 70) +A Z: syllabize / B: syllabise +A Z: syllabized / B: syllabised +A Z: syllabizing / B: syllabising +A Z: syllabizes / B: syllabises + +# syllogization (level 80) +A Z: syllogization / B: syllogisation +A Z: syllogizations / B: syllogisations + +# syllogize (level 70) +A Z: syllogize / B: syllogise +A Z: syllogized / B: syllogised +A Z: syllogizing / B: syllogising +A Z: syllogizes / B: syllogises + +# syllogizer (level 80) +A Z: syllogizer / B: syllogiser +A Z: syllogizers / B: syllogisers + +# sylvan (level 50) +_: sylvan / _v: silvan + +# sylvanize (level 95) +A Z: sylvanize / B: sylvanise +A Z: sylvanizes / B: sylvanises + +# sylviine (level 80) +A: sylviine / B: sylviinae + +# symbol (level 80) +A: symboled / B: symbolled +A: symboling / B: symbolling + +# symbolization (level 50) +A Z: symbolization / B: symbolisation +A Z: symbolizations / B: symbolisations +A Z: symbolization's / B: symbolisation's + +# symbolize (level 35) +A Z: symbolize / B: symbolise +A Z: symbolized / B: symbolised +A Z: symbolizing / B: symbolising +A Z: symbolizes / B: symbolises + +# symbolizer (level 80) +A Z: symbolizer / B: symboliser +A Z: symbolizers / B: symbolisers +A Z: symbolizer's / B: symboliser's + +# symmetrically (level 40) +A B: symmetrically / Av: symmetricly + +# symmetricalness (level 80) +_: symmetricalness / _v: symmetricness +_: symmetricalnesses / _v: symmetricnesses + +# symmetrization (level 70) +A Z: symmetrization / B: symmetrisation +A Z: symmetrizations / B: symmetrisations +A Z: symmetrization's / B: symmetrisation's + +# symmetrize (level 70) +A Z: symmetrize / B: symmetrise +A Z: symmetrized / B: symmetrised +A Z: symmetrizing / B: symmetrising +A Z: symmetrizes / B: symmetrises + +# sympathize (level 20) +A Z: sympathize / B: sympathise +A Z: sympathized / B: sympathised +A Z: sympathizing / B: sympathising +A Z: sympathizes / B: sympathises +A Z: sympathizings / B: sympathisings +A Z: sympathizing's / B: sympathising's + +# sympathizer (level 40) +A Z: sympathizer / B: sympathiser +A Z: sympathizers / B: sympathisers +A Z: sympathizer's / B: sympathiser's + +# sympathizingly (level 80) +A Z: sympathizingly / B: sympathisingly +A Z: sympathizinglier / B: sympathisinglier +A Z: sympathizingliest / B: sympathisingliest + +# symphonization (level 95) +A Z: symphonization / B: symphonisation +A Z: symphonization's / B: symphonisation's + +# symphonize (level 70) +A Z: symphonize / B: symphonise + +# symphonized (level 95) +A Z: symphonized / B: symphonised + +# symphonizing (level 95) +A Z: symphonizing / B: symphonising + +# symptomatize (level 80) +A Z: symptomatize / B: symptomatise +A Z: symptomatized / B: symptomatised +A Z: symptomatizing / B: symptomatising +A Z: symptomatizes / B: symptomatises + +# symptomize (level 80) +A Z: symptomize / B: symptomise +A Z: symptomizes / B: symptomises + +# synagogue (level 35) +_: synagogue / _V: synagog +_: synagogues / _V: synagogs +_: synagogue's / _V: synagog's + +# synalepha (level 80) +A: synalepha / B: synaloepha +A: synalephas / B: synaloephas + +# synalephe (level 95) +A: synalephe / B: synaloephe + +# sync (level 40) +A B: sync / AV Bv: synch +A B: synced / AV Bv: synched +A B: syncing / AV Bv: synching +A B: syncs / AV Bv: synches +A B: sync's / AV Bv: synch's + +# synchronizable (level 95) +A Z: synchronizable / B: synchronisable +A Z: synchronizables / B: synchronisables +A Z: synchronizable's / B: synchronisable's + +# synchronization (level 35) +A Z: synchronization / B: synchronisation +A Z: synchronizations / B: synchronisations +A Z: synchronization's / B: synchronisation's + +# synchronize (level 35) +A Z: synchronize / B: synchronise +A Z: synchronized / B: synchronised +A Z: synchronizing / B: synchronising +A Z: synchronizes / B: synchronises +A Z: synchronizing's / B: synchronising's | (-) + +# synchronizer (level 70) +A Z: synchronizer / B: synchroniser +A Z: synchronizers / B: synchronisers +A Z: synchronizer's / B: synchroniser's + +# syncretize (level 70) +A Z: syncretize / B: syncretise +A Z: syncretized / B: syncretised +A Z: syncretizing / B: syncretising +A Z: syncretizes / B: syncretises + +# syndicalize (level 95) +A Z: syndicalize / B: syndicalise +A Z: syndicalizes / B: syndicalises + +# synecious (level 70) +A: synecious / B: synoecious + +# synecology (level 70) +A: synecology / B: synoecology +A: synecologies / B: synoecologies + +# syneresis (level 70) +A: syneresis / B: synaeresis +A: synereses / B: synaereses +A: syneresis's / B: synaeresis's + +# synergize (level 80) +A Z: synergize / B: synergise +A Z: synergized / B: synergised +A Z: synergizing / B: synergising +A Z: synergizes / B: synergises + +# synesthesia (level 70) +A Dv: synesthesia / B D: synaesthesia +A Dv: synesthesias / B D: synaesthesias +A Dv: synesthesia's / B D: synaesthesia's + +# synesthetic (level 80) +A Dv: synesthetic / B D: synaesthetic +A Dv: synestheticer / B D: synaestheticer +A Dv: synestheticest / B D: synaestheticest + +# synetic (level 95) +A: synetic / B: synoetic + +# synoecize (level 80) +A Z: synoecize / B: synoecise +A Z: synoecized / B: synoecised +A Z: synoecizing / B: synoecising +A Z: synoecizes / B: synoecises + +# synonymize (level 70) +A Z: synonymize / B: synonymise +A Z: synonymized / B: synonymised +A Z: synonymizing / B: synonymising +A Z: synonymizes / B: synonymises + +# synopsize (level 35) +A Z: synopsize / B: synopsise +A Z: synopsized / B: synopsised +A Z: synopsizing / B: synopsising +A Z: synopsizes / B: synopsises + +# synthesization (level 80) +A Z: synthesization / B: synthesisation +A Z: synthesizations / B: synthesisations +A Z: synthesization's / B: synthesisation's + +# synthesize (level 35) +A Z: synthesize / B: synthesise / Zv: synthetize +A Z: synthesized / B: synthesised / Zv: synthetized +A Z: synthesizing / B: synthesising / Zv: synthetizing +A Z: synthesizes / B: synthesises / Zv: synthetizes + +# synthesizer (level 20) +A B: synthesizer / Bv: synthesiser +A B: synthesizers / Bv: synthesisers +A B: synthesizer's / Bv: synthesiser's + +# synthetization (level 95) +A Z: synthetization / B: synthetisation + +# synthetizer (level 80) +A Z: synthetizer / B: synthetiser +A Z: synthetizers / B: synthetisers +A Z: synthetizer's / B: synthetiser's + +# syntonization (level 95) +A Z: syntonization / B: syntonisation +A Z: syntonization's / B: syntonisation's + +# syntonize (level 80) +A Z: syntonize / B: syntonise +A Z: syntonized / B: syntonised +A Z: syntonizing / B: syntonising +A Z: syntonizes / B: syntonises + +# syphilization (level 80) +A Z: syphilization / B: syphilisation +A Z: syphilizations / B: syphilisations +A Z: syphilization's / B: syphilisation's + +# syphilize (level 80) +A Z: syphilize / B: syphilise +A Z: syphilized / B: syphilised +A Z: syphilizing / B: syphilising + +# Syrianize (level 95) +A Z: Syrianize / B: Syrianise +A Z: Syrianizes / B: Syrianises +A Z: Syrianize's / B: Syrianise's + +# syringocele (level 95) +A: syringocele / B: syringocoele + +# syrup (level 35) +A B: syrup / AV: sirup +A B: syrups / AV: sirups +A B: syrup's / AV: sirup's + +# systematization (level 55) +A Z: systematization / B: systematisation +A Z: systematizations / B: systematisations +A Z: systematization's / B: systematisation's + +# systematize (level 50) +A Z: systematize / B: systematise +A Z: systematized / B: systematised +A Z: systematizing / B: systematising +A Z: systematizes / B: systematises + +# systematizer (level 80) +A Z: systematizer / B: systematiser +A Z: systematizers / B: systematisers +A Z: systematizer's / B: systematiser's + +# systemizable (level 95) +A Z: systemizable / B: systemisable +A Z: systemizabler / B: systemisabler +A Z: systemizables / B: systemisables +A Z: systemizablest / B: systemisablest +A Z: systemizable's / B: systemisable's + +# systemization (level 80) +A Z: systemization / B: systemisation +A Z: systemizations / B: systemisations +A Z: systemization's / B: systemisation's + +# systemize (level 70) +A Z: systemize / B: systemise +A Z: systemized / B: systemised +A Z: systemizing / B: systemising +A Z: systemizes / B: systemises + +# systemizer (level 80) +A Z: systemizer / B: systemiser +A Z: systemizers / B: systemisers +A Z: systemizer's / B: systemiser's + +# taboo (level 35) +_: taboo / _V: tabu +_: tabooed / _V: tabued +_: tabooing / _V: tabuing +_: taboos / _V: tabus +_: taboo's / _V: tabu's + +# tabored (level 80) +A: tabored / B: taboured +A: taboring / B: tabouring + +# taborer (level 80) +A: taborer / B: tabourer +A: taborers / B: tabourers +A: taborer's / B: tabourer's + +# taboret (level 70) +A: taboret / B: tabouret +A: taborets / B: tabourets +A: taboret's / B: tabouret's + +# taborin (level 80) +A: taborin / B: tabourin +A: taborins / B: tabourins + +# taborine (level 80) +A: taborine / B: tabourine + +# tabularization (level 80) +A Z: tabularization / B: tabularisation +A Z: tabularizations / B: tabularisations +A Z: tabularization's / B: tabularisation's + +# tabularize (level 80) +A Z: tabularize / B: tabularise +A Z: tabularized / B: tabularised +A Z: tabularizing / B: tabularising +A Z: tabularizes / B: tabularises + +# tabule (level 80) +A: tabule / B: tabulae + +# tachypnea (level 80) +A: tachypnea / B: tachypnoea +A: tachypneas / B: tachypnoeas + +# tachypneic (level 95) +A: tachypneic / B: tachypnoeic + +# taffetized (level 80) +A Z: taffetized / B: taffetised + +# tailorization (level 95) +A Z: tailorization / B: tailorisation +A Z: tailorizations / B: tailorisations +A Z: tailorization's / B: tailorisation's + +# tailorize (level 95) +A Z: tailorize / B: tailorise +A Z: tailorizes / B: tailorises + +# Talmudization (level 95) +A Z: Talmudization / B: Talmudisation +A Z: Talmudizations / B: Talmudisations +A Z: Talmudization's / B: Talmudisation's + +# Talmudize (level 95) +A Z: Talmudize / B: Talmudise +A Z: Talmudizes / B: Talmudises +A Z: Talmudize's / B: Talmudise's + +# tamable (level 50) +_: tamable / _v: tameable + +# tambura (level 70) +A Bv: tambura / B: tamboura +A Bv: tamburas / B: tambouras +A Bv: tambura's / B: tamboura's + +# Tammanyize (level 95) +A Z: Tammanyize / B: Tammanyise +A Z: Tammanyizes / B: Tammanyises +A Z: Tammanyize's / B: Tammanyise's + +# tanalized (level 95) +A Z: tanalized / B: tanalised + +# tandemize (level 95) +A Z: tandemize / B: tandemise +A Z: tandemizes / B: tandemises + +# tantalization (level 60) +A Z: tantalization / B: tantalisation +A Z: tantalizations / B: tantalisations +A Z: tantalization's / B: tantalisation's + +# tantalize (level 35) +A Z: tantalize / B: tantalise +A Z: tantalized / B: tantalised +A Z: tantalizing / B: tantalising +A Z: tantalizes / B: tantalises +A Z: tantalizings / B: tantalisings + +# tantalizer (level 60) +A Z: tantalizer / B: tantaliser +A Z: tantalizers / B: tantalisers +A Z: tantalizer's / B: tantaliser's + +# tantalizingly (level 40) +A Z: tantalizingly / B: tantalisingly +A Z: tantalizinglier / B: tantalisinglier +A Z: tantalizinglies / B: tantalisinglies +A Z: tantalizingliest / B: tantalisingliest + +# tantalizingness (level 95) +A Z: tantalizingness / B: tantalisingness +A Z: tantalizingnesses / B: tantalisingnesses + +# tariffize (level 95) +A Z: tariffize / B: tariffise +A Z: tariffizes / B: tariffises + +# tartarization (level 80) +A Z: tartarization / B: tartarisation +A Z: tartarizations / B: tartarisations +A Z: tartarization's / B: tartarisation's + +# tartarize (level 80) +A Z: tartarize / B: tartarise +A Z: tartarized / B: tartarised +A Z: tartarizing / B: tartarising +A Z: tartarizes / B: tartarises + +# tassel (level 35) +A B B-: tassel +A: tasseled / B B-: tasselled +A: tasseling / B B-: tasselling +A B: tassels / B-: tassells + +# tautologize (level 70) +A Z: tautologize / B: tautologise +A Z: tautologized / B: tautologised +A Z: tautologizing / B: tautologising +A Z: tautologizes / B: tautologises + +# tavernize (level 95) +A Z: tavernize / B: tavernise +A Z: tavernizes / B: tavernises + +# taxidermize (level 80) +A Z: taxidermize / B: taxidermise +A Z: taxidermized / B: taxidermised +A Z: taxidermizing / B: taxidermising +A Z: taxidermizes / B: taxidermises + +# Taylorize (level 95) +A Z: Taylorize / B: Taylorise +A Z: Taylorizes / B: Taylorises +A Z: Taylorize's / B: Taylorise's + +# te (level 80) +A: te / B: tae +A: tes / B: taes + +# teasel (level 50) +A B: teasel / AV1 Bv: teazle / AV2 Bv: teazel | +A B: teasels / AV1 Bv: teazles / AV2 Bv: teazels | +A B: teasel's / AV1 Bv: teazle's / AV2 Bv: teazel's | +A B: teaseling / Av: teaselling | :ing +A B: teaselings / Av: teasellings | :ing +A B: teaseling's / Av: teaselling's | :ing +A Av B: teasel | +A B: teaseled / Av: teaselled | +A B: teaseling / Av: teaselling | +A Av B: teasels | + +# teaseler (level 70) +A B: teaseler / Av: teaseller +A B: teaselers / Av: teasellers +A B: teaseler's / Av: teaseller's + +# Tebilize (level 80) +A Z: Tebilize / B: Tebilise +A Z: Tebilized / B: Tebilised +A Z: Tebilized's / B: Tebilised's +A Z: Tebilizing / B: Tebilising +A Z: Tebilizes / B: Tebilises +A Z: Tebilize's / B: Tebilise's +A Z: Tebilizing's / B: Tebilising's + +# technicalization (level 80) +A Z: technicalization / B: technicalisation + +# technicalize (level 80) +A Z: technicalize / B: technicalise +A Z: technicalizes / B: technicalises + +# technicize (level 80) +A Z: technicize / B: technicise +A Z: technicized / B: technicised +A Z: technicizing / B: technicising +A Z: technicizes / B: technicises + +# Technicolor (level 50) +A B: Technicolor / Bx: Technicolour | trademark +A B: Technicolors / Bx: Technicolours | trademark +A B: Technicolor's / Bx: Technicolour's | trademark +A B: technicolor / BV: technicolour + +# technicolored (level 80) +A B: technicolored / BV: technicoloured + +# technologize (level 80) +A Z: technologize / B: technologise + +# teer (level 80) +A: teer / B: teaer +A: teers / B: teres + +# teetotal (level 80) +A: teetotaled / B: teetotalled +A: teetotaling / B: teetotalling + +# teetotaler (level 35) +A: teetotaler / B: teetotaller +A: teetotalers / B: teetotallers +A: teetotaler's / B: teetotaller's + +# tegu (level 80) +A: tegu / B: taegu + +# tele (level 80) +A: tele / B: telae + +# telepathize (level 80) +A Z: telepathize / B: telepathise +A Z: telepathized / B: telepathised +A Z: telepathizing / B: telepathising +A Z: telepathizes / B: telepathises + +# telesthesia (level 70) +A: telesthesia / B: telaesthesia +A: telesthesias / B: telaesthesias +A: telesthesia's / B: telaesthesia's + +# telesthetic (level 80) +A: telesthetic / B: telaesthetic +A: telestheticer / B: telaestheticer +A: telestheticest / B: telaestheticest + +# tellurize (level 70) +A Z: tellurize / B: tellurise +A Z: tellurized / B: tellurised +A Z: tellurizing / B: tellurising +A Z: tellurizes / B: tellurises + +# tels (level 70) +A: tels / B: taels + +# templize (level 95) +A Z: templize / B: templise +A Z: templizes / B: templises + +# tempo (level 35) +A B: tempos / Av Bv: tempi + +# temporalize (level 80) +A Z: temporalize / B: temporalise +A Z: temporalized / B: temporalised +A Z: temporalizing / B: temporalising +A Z: temporalizes / B: temporalises + +# temporization (level 70) +A Z: temporization / B: temporisation +A Z: temporizations / B: temporisations +A Z: temporization's / B: temporisation's + +# temporize (level 50) +A Z: temporize / B: temporise +A Z: temporized / B: temporised +A Z: temporizing / B: temporising +A Z: temporizes / B: temporises +A Z: temporizings / B: temporisings +A Z: temporizing's / B: temporising's + +# temporizer (level 60) +A Z: temporizer / B: temporiser +A Z: temporizers / B: temporisers +A Z: temporizer's / B: temporiser's + +# temporizingly (level 80) +A Z: temporizingly / B: temporisingly +A Z: temporizinglier / B: temporisinglier +A Z: temporizingliest / B: temporisingliest + +# tenderization (level 80) +A Z: tenderization / B: tenderisation +A Z: tenderizations / B: tenderisations +A Z: tenderization's / B: tenderisation's + +# tenderize (level 35) +A Z: tenderize / B: tenderise +A Z: tenderized / B: tenderised +A Z: tenderizing / B: tenderising +A Z: tenderizes / B: tenderises + +# tenderizer (level 50) +A Z: tenderizer / B: tenderiser +A Z: tenderizers / B: tenderisers +A Z: tenderizer's / B: tenderiser's + +# tendinitis (level 50) +_: tendinitis / _v: tendonitis +_: tendinitises / _v: tendonitises +_: tendinitis's / _v: tendonitis's + +# tendriled (level 80) +A: tendriled / B: tendrilled + +# tenementization (level 95) +A Z: tenementization / B: tenementisation +A Z: tenementizations / B: tenementisations +A Z: tenementization's / B: tenementisation's + +# tenementize (level 95) +A Z: tenementize / B: tenementise +A Z: tenementizes / B: tenementises + +# tenia (level 70) +A: tenia / B: taenia +A: tenias / B: taenias +A: tenia's / B: taenia's +A: teniasis / B: taeniasis +A: teniases / B: taeniases +A: teniasis's / B: taeniasis's + +# teniacidal (level 95) +A: teniacidal / B: taeniacidal + +# teniacide (level 70) +A: teniacide / B: taeniacide +A: teniacides / B: taeniacides +A: teniacide's / B: taeniacide's + +# teniae (level 80) +A: teniae / B: taeniae + +# teniafuge (level 70) +A: teniafuge / B: taeniafuge +A: teniafuges / B: taeniafuges +A: teniafuge's / B: taeniafuge's + +# tenioid (level 80) +A: tenioid / B: taenioid + +# tenthmeter (level 95) +A: tenthmeter / B: tenthmetre + +# tepee (level 35) +_: tepee / _v: teepee / _V: tipi +_: tepees / _v: teepees / _V: tipis +_: tepee's / _v: teepee's / _V: tipi's + +# terf (level 70) +A: terf / B: tref + +# terma (level 80) +A: terma / B: trema + +# termatic (level 80) +A: termatic / B: trematic + +# terminalization (level 95) +A Z: terminalization / B: terminalisation +A Z: terminalizations / B: terminalisations +A Z: terminalization's / B: terminalisation's + +# terminalized (level 95) +A Z: terminalized / B: terminalised +A Z: terminalizeds / B: terminaliseds +A Z: terminalized's / B: terminalised's + +# ternize (level 95) +A Z: ternize / B: ternise +A Z: ternizes / B: ternises + +# terre (level 80) +A: terre / B: terrae + +# terrestrialize (level 95) +A Z: terrestrialize / B: terrestrialise +A Z: terrestrializes / B: terrestrialises + +# territorialization (level 80) +A Z: territorialization / B: territorialisation +A Z: territorializations / B: territorialisations +A Z: territorialization's / B: territorialisation's + +# territorialize (level 70) +A Z: territorialize / B: territorialise +A Z: territorialized / B: territorialised +A Z: territorializing / B: territorialising +A Z: territorializes / B: territorialises + +# terrorization (level 70) +A Z: terrorization / B: terrorisation +A Z: terrorizations / B: terrorisations +A Z: terrorization's / B: terrorisation's + +# terrorize (level 35) +A Z: terrorize / B: terrorise +A Z: terrorized / B: terrorised +A Z: terrorizing / B: terrorising +A Z: terrorizes / B: terrorises + +# terrorizer (level 70) +A Z: terrorizer / B: terroriser +A Z: terrorizers / B: terrorisers +A Z: terrorizer's / B: terroriser's + +# terts (level 80) +A: terts / B: trets + +# teste (level 80) +A: teste / B: testae + +# testimonialization (level 95) +A Z: testimonialization / B: testimonialisation +A Z: testimonializations / B: testimonialisations +A Z: testimonialization's / B: testimonialisation's + +# testimonialize (level 80) +A Z: testimonialize / B: testimonialise +A Z: testimonialized / B: testimonialised +A Z: testimonializing / B: testimonialising +A Z: testimonializes / B: testimonialises + +# testimonializer (level 95) +A Z: testimonializer / B: testimonialiser +A Z: testimonializers / B: testimonialisers + +# tetanization (level 80) +A Z: tetanization / B: tetanisation +A Z: tetanizations / B: tetanisations +A Z: tetanization's / B: tetanisation's + +# tetanize (level 70) +A Z: tetanize / B: tetanise +A Z: tetanized / B: tetanised +A Z: tetanizing / B: tetanising +A Z: tetanizes / B: tetanises + +# tetrachlorethylene (level 80) +A: tetrachlorethylene / B: tetrachloroethylene +A: tetrachlorethylenes / B: tetrachloroethylenes + +# Teutonization (level 80) +A Z: Teutonization / B: Teutonisation +A Z: Teutonization's / B: Teutonisation's + +# Teutonize (level 70) +A Z: Teutonize / B: Teutonise +A Z: Teutonized / B: Teutonised +A Z: Teutonizing / B: Teutonising +A Z: Teutonizes / B: Teutonises +A Z: teutonize / B: teutonise + +# texturize (level 80) +A Z: texturize / B: texturise +A Z: texturized / B: texturised +A Z: texturizing / B: texturising +A Z: texturizes / B: texturises + +# thalamocele (level 95) +A: thalamocele / B: thalamocoele + +# thalassemia (level 80) +A: thalassemia / B: thalassaemia +A: thalassemias / B: thalassaemias + +# thalassemic (level 80) +A: thalassemic / B: thalassaemic + +# theater (level 20) +A Cv: theater / B C: theatre +A Cv: theaters / B C: theatres +A Cv: theater's / B C: theatre's + +# theatergoer (level 55) +A: theatergoer / B: theatregoer +A: theatergoers / B: theatregoers +A: theatergoer's / B: theatregoer's + +# theatergoing (level 80) +A: theatergoing / B: theatregoing +A: theatergoings / B: theatregoings +A: theatergoing's / B: theatregoing's + +# theaterless (level 95) +A: theaterless / B: theatreless + +# theaterlesses (level 99) +A: theaterlesses / B: theatrelesses + +# theaterlike (level 95) +A: theaterlike / B: theatrelike +A: theaterlikes / B: theatrelikes +A: theaterlike's / B: theatrelike's + +# theatricalization (level 80) +A Z: theatricalization / B: theatricalisation +A Z: theatricalizations / B: theatricalisations +A Z: theatricalization's / B: theatricalisation's + +# theatricalize (level 70) +A Z: theatricalize / B: theatricalise +A Z: theatricalized / B: theatricalised +A Z: theatricalizing / B: theatricalising +A Z: theatricalizes / B: theatricalises + +# theatricize (level 80) +A Z: theatricize / B: theatricise +A Z: theatricized / B: theatricised +A Z: theatricizing / B: theatricising +A Z: theatricizes / B: theatricises + +# theologization (level 95) +A Z: theologization / B: theologisation +A Z: theologizations / B: theologisations +A Z: theologization's / B: theologisation's + +# theologize (level 70) +A Z: theologize / B: theologise +A Z: theologized / B: theologised +A Z: theologizing / B: theologising +A Z: theologizes / B: theologises + +# theologizer (level 80) +A Z: theologizer / B: theologiser +A Z: theologizers / B: theologisers +A Z: theologizer's / B: theologiser's + +# Theone (level 95) +A: Theone / B: Theonoe +A: Theone's / B: Theonoe's + +# theorization (level 80) +A Z: theorization / B: theorisation +A Z: theorizations / B: theorisations +A Z: theorization's / B: theorisation's + +# theorize (level 35) +A Z: theorize / B: theorise +A Z: theorized / B: theorised +A Z: theorizing / B: theorising +A Z: theorizes / B: theorises + +# theorizer (level 70) +A Z: theorizer / B: theoriser +A Z: theorizers / B: theorisers +A Z: theorizer's / B: theoriser's + +# theosophize (level 80) +A Z: theosophize / B: theosophise +A Z: theosophized / B: theosophised +A Z: theosophizing / B: theosophising +A Z: theosophizes / B: theosophises + +# therap (level 70) +A: therap / B: threap + +# thereness (level 80) +A: thereness / B: threeness +A: therenesses / B: threenesses + +# thermalization (level 80) +A Z: thermalization / B: thermalisation +A Z: thermalizations / B: thermalisations + +# thermalize (level 80) +A Z: thermalize / B: thermalise +A Z: thermalized / B: thermalised +A Z: thermalizing / B: thermalising +A Z: thermalizes / B: thermalises + +# therme (level 70) +A: therme / B: thermae + +# thermesthesia (level 70) +A: thermesthesia / Av B: thermaesthesia +A: thermesthesia's / Av B: thermaesthesia's + +# thermoanesthesia (level 95) +A: thermoanesthesia / B: thermoanaesthesia +A: thermoanesthesias / B: thermoanaesthesias +A: thermoanesthesia's / B: thermoanaesthesia's + +# thermometerize (level 95) +A Z: thermometerize / B: thermometerise +A Z: thermometerizes / B: thermometerises + +# thermopolymerization (level 95) +A Z: thermopolymerization / B: thermopolymerisation +A Z: thermopolymerizations / B: thermopolymerisations +A Z: thermopolymerization's / B: thermopolymerisation's + +# thermosiphon (level 70) +A: thermosiphon / B: thermosyphon +A: thermosiphons / B: thermosyphons +A: thermosiphon's / B: thermosyphon's + +# thesmothete (level 80) +A: thesmothete / B: thesmothetae + +# thiamine (level 50) +_: thiamine / _V: thiamin +_: thiamines / _V: thiamins +_: thiamine's / _V: thiamin's + +# thralldom (level 50) +A Bv C: thralldom / Av B Cv: thraldom +A Bv C: thralldoms / Av B Cv: thraldoms +A Bv C: thralldom's / Av B Cv: thraldom's + +# thronize (level 95) +A Z: thronize / B: thronise +A Z: thronizes / B: thronises + +# through (level 10) +A B: through / Av: thru + +# thruway (level 50) +A Bv: thruway / Av B C: throughway +A Bv: thruways / Av B C: throughways +A Bv: thruway's / Av B C: throughway's + +# thymectomize (level 80) +A Z: thymectomize / B: thymectomise + +# thyroidectomized (level 80) +A Z: thyroidectomized / B: thyroidectomised + +# thyroidization (level 95) +A Z: thyroidization / B: thyroidisation +A Z: thyroidizations / B: thyroidisations +A Z: thyroidization's / B: thyroidisation's + +# tidbit (level 35) +A C: tidbit / AV B: titbit +A C: tidbits / AV B: titbits +A C: tidbit's / AV B: titbit's + +# Tillford (level 95) +A: Tillford / B: Tillfourd +A: Tillford's / B: Tillfourd's + +# Timonize (level 80) +A Z: Timonize / B: Timonise +A Z: Timonized / B: Timonised +A Z: Timonized's / B: Timonised's +A Z: Timonizing / B: Timonising +A Z: Timonizes / B: Timonises +A Z: Timonize's / B: Timonise's +A Z: Timonizing's / B: Timonising's + +# Timor (level 50) +A: Timor / B: Timour +A: Timor's / B: Timour's + +# tinsel (level 35) +A Cv: tinseled / B C: tinselled +A Cv: tinseling / B C: tinselling + +# tinselier (level 99) +A: tinselier / B: tinsellier + +# tinseliest (level 99) +A: tinseliest / B: tinselliest + +# tire (level 20) +A B: tire | exhausted +A B: tires | exhausted +A B: tire's | exhausted +A C: tire / B: tyre | wheel +A C: tires / B: tyres | whell +A C: tire's / B: tyre's | wheel + +# titer (level 70) +A Cv: titer / B C: titre +A Cv: titers / B C: titres +A Cv: titer's / B C: titre's + +# titivate (level 55) +_: titivate / _v: tittivate +_: titivated / _v: tittivated +_: titivating / _v: tittivating +_: titivates / _v: tittivates + +# titivation (level 60) +_: titivation / _v: tittivation +_: titivations / _v: tittivations +_: titivation's / _v: tittivation's + +# tittup (level 80) +A: tittuped / B: tittupped +A: tittuping / B: tittupping + +# tittupy (level 80) +A: tittupy / B: tittuppy + +# toffee (level 35) +_: toffee / _V: toffy +_: toffees / _V: toffies +_: toffee's / _V: toffy's + +# tog (level 55) +_: togged / _-: toged +_: togging / _-: toging + +# ton (level 20) +A B: ton +A B: ton's +A B: tonne | metric ton +A B: tonne's | metric ton + +# tonicize (level 95) +A Z: tonicize / B: tonicise +A Z: tonicizes / B: tonicises + +# topee (level 55) +_: topee / _v: topi | hat +_: topees / _v: topis | hat +_: topee's / _v: topi's | hat +_: topi / _v: topis | [topi] antelope + +# topesthesia (level 95) +A: topesthesia / B: topaesthesia + +# toret (level 95) +A: toret / B: touret + +# tormentor (level 35) +_: tormentor / _V: tormenter +_: tormentors / _V: tormenters +_: tormentor's / _V: tormenter's + +# torporize (level 95) +A Z: torporize / B: torporise +A Z: torporizes / B: torporises + +# Toryize (level 95) +A Z: Toryize / B: Toryise +A Z: Toryizes / B: Toryises +A Z: Toryize's / B: Toryise's + +# total (level 35) +A: totaled / B: totalled +A: totaling / B: totalling + +# totaler (level 95) +A: totaler / B: totaller +A: totalers / B: totallers +A: totaler's / B: totaller's + +# totalitarianize (level 80) +A Z: totalitarianize / B: totalitarianise + +# totalization (level 80) +A Z: totalization / B: totalisation +A Z: totalizations / B: totalisations +A Z: totalization's / B: totalisation's + +# totalizator (level 60) +A: totalizator / B: totalisator +A: totalizators / B: totalisators +A: totalizator's / B: totalisator's + +# totalize (level 70) +A Z: totalize / B: totalise +A Z: totalized / B: totalised +A Z: totalizing / B: totalising +A Z: totalizes / B: totalises + +# totalizer (level 70) +A Z: totalizer / B: totaliser +A Z: totalizers / B: totalisers +A Z: totalizer's / B: totaliser's + +# totemization (level 95) +A Z: totemization / B: totemisation +A Z: totemizations / B: totemisations +A Z: totemization's / B: totemisation's + +# tourize (level 95) +A Z: tourize / B: tourise +A Z: tourizes / B: tourises + +# toward (level 10) +_: toward | +_: toward / _v: towards | + +# towel (level 35) +A: toweled / B: towelled +A: toweling / B: towelling +A: towelings / B: towellings +A: toweling's / B: towelling's + +# toxanemia (level 95) +A: toxanemia / B: toxanaemia + +# toxemia (level 50) +A C Dv: toxemia / B D: toxaemia +A C Dv: toxemias / B D: toxaemias +A C Dv: toxemia's / B D: toxaemia's + +# toxemic (level 70) +A C Dv: toxemic / B D: toxaemic + +# toxicemia (level 95) +A: toxicemia / B: toxicaemia + +# toxicohemia (level 95) +A: toxicohemia / B: toxicohaemia + +# toxihemia (level 95) +A: toxihemia / B: toxihaemia + +# toxinemia (level 95) +A: toxinemia / B: toxinaemia + +# trabeate (level 80) +A: trabeate / B: trabeatae + +# trabecule (level 80) +A: trabecule / B: trabeculae + +# tractorization (level 95) +A Z: tractorization / B: tractorisation +A Z: tractorizations / B: tractorisations +A Z: tractorization's / B: tractorisation's + +# tractorize (level 95) +A Z: tractorize / B: tractorise +A Z: tractorizes / B: tractorises + +# traditionalize (level 80) +A Z: traditionalize / B: traditionalise +A Z: traditionalized / B: traditionalised +A Z: traditionalizes / B: traditionalises + +# traditionize (level 95) +A Z: traditionize / B: traditionise +A Z: traditionizes / B: traditionises + +# tragicize (level 95) +A Z: tragicize / B: tragicise +A Z: tragicizes / B: tragicises + +# tragicolored (level 95) +A: tragicolored / B: tragicoloured + +# traitorize (level 95) +A Z: traitorize / B: traitorise +A Z: traitorizes / B: traitorises + +# trammel (level 50) +A Cv: trammeled / B C: trammelled +A Cv: trammeling / B C: trammelling + +# trammeler (level 70) +A: trammeler / B: trammeller +A: trammelers / B: trammellers +A: trammeler's / B: trammeller's + +# tranquility (level 35) +A Bv C: tranquility / Av B: tranquillity +A Bv C: tranquilities / Av B: tranquillities +A Bv C: tranquility's / Av B: tranquillity's + +# tranquilization (level 70) +A Z: tranquilization / B: tranquilisation +A Z: tranquilizations / B: tranquilisations +A Z: tranquilization's / B: tranquilisation's + +# tranquilize (level 35) +A C: tranquilize / AV Cv Z: tranquillize / B CV: tranquillise +A C: tranquilized / AV Cv Z: tranquillized / B CV: tranquillised +A C: tranquilizing / AV Cv Z: tranquillizing / B CV: tranquillising +A C: tranquilizes / AV Cv Z: tranquillizes / B CV: tranquillises +A C: tranquilizings / AV Cv Z: tranquillizings / B CV: tranquillisings | (-) -- normally an adj. +A C: tranquilizing's / AV Cv Z: tranquillizing's / B CV: tranquillising's | (-) -- normally an adj. + +# tranquilizer (level 35) +A C: tranquilizer / AV Cv Z: tranquillizer / B CV: tranquilliser +A C: tranquilizers / AV Cv Z: tranquillizers / B CV: tranquillisers +A C: tranquilizer's / AV Cv Z: tranquillizer's / B CV: tranquilliser's + +# tranquilizingly (level 80) +A Z: tranquilizingly / B: tranquilisingly + +# tranquillization (level 80) +A Z: tranquillization / B: tranquillisation +A Z: tranquillizations / B: tranquillisations +A Z: tranquillization's / B: tranquillisation's + +# tranquillizingly (level 80) +A Z: tranquillizingly / B: tranquillisingly + +# transcendentalization (level 95) +A Z: transcendentalization / B: transcendentalisation +A Z: transcendentalization's / B: transcendentalisation's + +# transcendentalize (level 70) +A Z: transcendentalize / B: transcendentalise +A Z: transcendentalized / B: transcendentalised +A Z: transcendentalizing / B: transcendentalising +A Z: transcendentalizes / B: transcendentalises + +# transcolor (level 95) +A: transcolor / B: transcolour +A: transcolorrer / B: transcolourer +A: transcolorrest / B: transcolourest + +# transcoloration (level 95) +A: transcoloration / B: transcolouration +A: transcolorations / B: transcolourations +A: transcoloration's / B: transcolouration's + +# transgender (level 60) +_: transgender / _.: transgendered + +# transistorization (level 80) +A Z: transistorization / B: transistorisation +A Z: transistorizations / B: transistorisations +A Z: transistorization's / B: transistorisation's + +# transistorize (level 55) +A Z: transistorize / B: transistorise +A Z: transistorized / B: transistorised +A Z: transistorizing / B: transistorising +A Z: transistorizes / B: transistorises + +# transparentize (level 80) +A Z: transparentize / B: transparentise +A Z: transparentizes / B: transparentises + +# traumatization (level 80) +A Z: traumatization / B: traumatisation +A Z: traumatizations / B: traumatisations +A Z: traumatization's / B: traumatisation's + +# traumatize (level 35) +A Z: traumatize / B: traumatise +A Z: traumatized / B: traumatised +A Z: traumatizing / B: traumatising +A Z: traumatizes / B: traumatises + +# travel (level 20) +A: traveled / B: travelled +A: traveler / B: traveller +A: travelers / B: travellers +A: traveler's / B: traveller's +A: traveling / B: travelling +A: travelings / B: travellings +A: traveling's / B: travelling's + +# travelogue (level 50) +A B: travelogue / Av: travelog +A B: travelogues / Av: travelogs +A B: travelogue's / Av: travelog's + +# trial (level 35) +A: trialed / B: trialled +A: trialing / B: trialling + +# trialization (level 99) +A Z: trialization / B: trialisation + +# triangularization (level 99) +A Z: triangularization / B: triangularisation +A Z: triangularizations / B: triangularisations + +# triangularize (level 99) +A Z: triangularize / B: triangularise +A Z: triangularized / B: triangularised +A Z: triangularizing / B: triangularising +A Z: triangularizes / B: triangularises + +# trichinization (level 80) +A Z: trichinization / B: trichinisation +A Z: trichinizations / B: trichinisations +A Z: trichinization's / B: trichinisation's + +# trichinize (level 70) +A Z: trichinize / B: trichinise +A Z: trichinized / B: trichinised +A Z: trichinizing / B: trichinising +A Z: trichinizes / B: trichinises + +# trichlorethylene (level 70) +A: trichlorethylene / B: trichloroethylene +A: trichlorethylenes / B: trichloroethylenes + +# trichotomize (level 80) +A Z: trichotomize / B: trichotomise +A Z: trichotomized / B: trichotomised +A Z: trichotomizing / B: trichotomising +A Z: trichotomizes / B: trichotomises + +# tricolor (level 50) +A: tricolor / B: tricolour +A: tricolors / B: tricolours +A: tricolor's / B: tricolour's + +# tricolored (level 70) +A: tricolored / B: tricoloured + +# triecious (level 70) +A: triecious / B: trioecious + +# trieciously (level 95) +A: trieciously / B: trioeciously + +# triene (level 80) +A: triene / B: triaene + +# trifluoride (level 95) +A: trifluoride / B: trifluouride + +# trillionize (level 95) +A Z: trillionize / B: trillionise +A Z: trillionizes / B: trillionises + +# trimerization (level 95) +A Z: trimerization / B: trimerisation +A Z: trimerizations / B: trimerisations +A Z: trimerization's / B: trimerisation's + +# tripylean (level 95) +A: tripylean / B: tripylaean + +# trivialization (level 60) +A Z: trivialization / B: trivialisation +A Z: trivializations / B: trivialisations +A Z: trivialization's / B: trivialisation's + +# trivialize (level 40) +A Z: trivialize / B: trivialise +A Z: trivialized / B: trivialised +A Z: trivializing / B: trivialising +A Z: trivializes / B: trivialises + +# trolley (level 20) +A B C: trolley / AV Cv: trolly +A B C: trolleyed / AV Cv: trollied +A B C: trolleying / AV Cv: trollying +A B C: trolleys / AV Cv: trollies +A B C: trolley's / AV Cv: trolly's + +# tropeolin (level 70) +A: tropeolin / B: tropaeolin +A: tropeolin's / B: tropaeolin's + +# tropicalization (level 80) +A Z: tropicalization / B: tropicalisation +A Z: tropicalizations / B: tropicalisations +A Z: tropicalization's / B: tropicalisation's + +# tropicalize (level 70) +A Z: tropicalize / B: tropicalise +A Z: tropicalized / B: tropicalised +A Z: tropicalizing / B: tropicalising +A Z: tropicalizes / B: tropicalises + +# trowel (level 35) +A: troweled / B: trowelled +A: troweling / B: trowelling + +# troweler (level 80) +A: troweler / B: troweller +A: trowelers / B: trowellers +A: troweler's / B: troweller's + +# Trubenize (level 80) +A Z: Trubenize / B: Trubenise +A Z: Trubenized / B: Trubenised +A Z: Trubenized's / B: Trubenised's +A Z: Trubenizing / B: Trubenising +A Z: Trubenizes / B: Trubenises +A Z: Trubenize's / B: Trubenise's +A Z: Trubenizing's / B: Trubenising's + +# trypsinize (level 95) +A Z: trypsinize / B: trypsinise +A Z: trypsinizes / B: trypsinises +A Z: trypsinize's / B: trypsinise's + +# tsoris (level 80) +A: tsoris / B: tsouris + +# tubercularization (level 95) +A Z: tubercularization / B: tubercularisation +A Z: tubercularization's / B: tubercularisation's + +# tubercularize (level 95) +A Z: tubercularize / B: tubercularise + +# tubercularized (level 95) +A Z: tubercularized / B: tubercularised + +# tubercularizing (level 95) +A Z: tubercularizing / B: tubercularising + +# tuberculinization (level 95) +A Z: tuberculinization / B: tuberculinisation +A Z: tuberculinizations / B: tuberculinisations +A Z: tuberculinization's / B: tuberculinisation's + +# tuberculinize (level 95) +A Z: tuberculinize / B: tuberculinise +A Z: tuberculinized / B: tuberculinised +A Z: tuberculinizing / B: tuberculinising +A Z: tuberculinizes / B: tuberculinises + +# tuberculization (level 80) +A Z: tuberculization / B: tuberculisation +A Z: tuberculizations / B: tuberculisations + +# tuberculize (level 80) +A Z: tuberculize / B: tuberculise +A Z: tuberculized / B: tuberculised +A Z: tuberculizing / B: tuberculising +A Z: tuberculizes / B: tuberculises + +# tuberization (level 95) +A Z: tuberization / B: tuberisation +A Z: tuberizations / B: tuberisations +A Z: tuberization's / B: tuberisation's + +# tuberize (level 95) +A Z: tuberize / B: tuberise +A Z: tuberizes / B: tuberises + +# tubulization (level 95) +A Z: tubulization / B: tubulisation +A Z: tubulizations / B: tubulisations +A Z: tubulization's / B: tubulisation's + +# tularemia (level 60) +A C: tularemia / B Cv: tularaemia +A C: tularemias / B Cv: tularaemias + +# tularemic (level 80) +A: tularemic / B: tularaemic + +# tumbrel (level 50) +A Bv C: tumbrel / Av B Cv: tumbril +A Bv C: tumbrels / Av B Cv: tumbrils +A Bv C: tumbrel's / Av B Cv: tumbril's + +# tumor (level 35) +A Cv DV: tumor / B C D: tumour +A Cv DV: tumors / B C D: tumours +A Cv DV: tumor's / B C D: tumour's + +# tumored (level 95) +A: tumored / B: tumoured + +# tunnel (level 35) +A: tunneled / B: tunnelled +A: tunneling / B: tunnelling +A: tunnelings / B: tunnellings + +# tunneler (level 60) +A: tunneler / B: tunneller +A: tunnelers / B: tunnellers +A: tunneler's / B: tunneller's + +# turdine (level 70) +A: turdine / B: turdinae + +# Turkicize (level 80) +A Z: Turkicize / B: Turkicise +A Z: Turkicized / B: Turkicised +A Z: Turkicized's / B: Turkicised's +A Z: Turkicizing / B: Turkicising +A Z: Turkicizes / B: Turkicises +A Z: Turkicize's / B: Turkicise's +A Z: Turkicizing's / B: Turkicising's + +# Turkize (level 95) +A Z: Turkize / B: Turkise +A Z: Turkizes / B: Turkises +A Z: Turkize's / B: Turkise's + +# Tuscanize (level 95) +A Z: Tuscanize / B: Tuscanise +A Z: Tuscanizes / B: Tuscanises +A Z: Tuscanize's / B: Tuscanise's + +# tutele (level 95) +A: tutele / B: tutelae + +# tutorization (level 95) +A Z: tutorization / B: tutorisation +A Z: tutorizations / B: tutorisations +A Z: tutorization's / B: tutorisation's + +# tutorize (level 80) +A Z: tutorize / B: tutorise +A Z: tutorized / B: tutorised +A Z: tutorizing / B: tutorising +A Z: tutorizes / B: tutorises + +# twier (level 80) +A: twier / B: twire +A: twiers / B: twires + +# tyke (level 40) +_: tyke / _V: tike +_: tykes / _V: tikes +_: tyke's / _V: tike's + +# Tylerize (level 95) +A Z: Tylerize / B: Tylerise +A Z: Tylerizes / B: Tylerises +A Z: Tylerize's / B: Tylerise's + +# typhemia (level 95) +A: typhemia / B: typhaemia +A: typhemia / B: typhoemia +A: typhoemia / B: typhoaemia + +# typhlenteritis (level 95) +A: typhlenteritis / B: typhloenteritis + +# tyrannize (level 35) +A Z: tyrannize / B: tyrannise +A Z: tyrannized / B: tyrannised +A Z: tyrannizing / B: tyrannising +A Z: tyrannizes / B: tyrannises +A Z: tyrannizings / B: tyrannisings +A Z: tyrannizing's / B: tyrannising's + +# tyrannizer (level 70) +A Z: tyrannizer / B: tyranniser +A Z: tyrannizers / B: tyrannisers +A Z: tyrannizer's / B: tyranniser's + +# tyrannizingly (level 95) +A Z: tyrannizingly / B: tyrannisingly +A Z: tyrannizinglier / B: tyrannisinglier +A Z: tyrannizingliest / B: tyrannisingliest + +# tyro (level 50) +A B: tyro / AV Bv: tiro / A-: tyreo +A B: tyros / AV Bv: tiros / A-: tyreos +A B: tyro's / AV Bv: tiro's / A-: tyreo's + +# ukulele (level 50) +_: ukulele / _V: ukelele +_: ukuleles / _V: ukeleles +_: ukulele's / _V: ukelele's + +# ultracentralizer (level 95) +A Z: ultracentralizer / B: ultracentraliser +A Z: ultracentralizers / B: ultracentralisers +A Z: ultracentralizer's / B: ultracentraliser's + +# ultrahonorable (level 95) +A: ultrahonorable / B: ultrahonourable +A: ultrahonorables / B: ultrahonourables +A: ultrahonorable's / B: ultrahonourable's + +# ultraspecialization (level 95) +A Z: ultraspecialization / B: ultraspecialisation +A Z: ultraspecializations / B: ultraspecialisations +A Z: ultraspecialization's / B: ultraspecialisation's + +# ultrastandardization (level 95) +A Z: ultrastandardization / B: ultrastandardisation +A Z: ultrastandardizations / B: ultrastandardisations +A Z: ultrastandardization's / B: ultrastandardisation's + +# unacclimatized (level 70) +A Z: unacclimatized / B: unacclimatised + +# unagonize (level 95) +A Z: unagonize / B: unagonise + +# unalcoholized (level 95) +A Z: unalcoholized / B: unalcoholised +A Z: unalcoholizedder / B: unalcoholisedder +A Z: unalcoholizeddest / B: unalcoholiseddest +A Z: unalcoholizeds / B: unalcoholiseds +A Z: unalcoholized's / B: unalcoholised's + +# unalphabetized (level 70) +A Z: unalphabetized / B: unalphabetised + +# unamortization (level 95) +A Z: unamortization / B: unamortisation +A Z: unamortizations / B: unamortisations +A Z: unamortization's / B: unamortisation's + +# unamortized (level 80) +A Z: unamortized / B: unamortised + +# unanalyzable (level 80) +A C: unanalyzable / B: unanalysable + +# unanalyzed (level 80) +A C: unanalyzed / B: unanalysed + +# unanatomizable (level 95) +A Z: unanatomizable / B: unanatomisable + +# unanatomized (level 95) +A Z: unanatomized / B: unanatomised + +# unanemic (level 95) +A: unanemic / B: unanaemic + +# unanimalized (level 95) +A Z: unanimalized / B: unanimalised +A Z: unanimalizeds / B: unanimaliseds +A Z: unanimalized's / B: unanimalised's + +# unantagonizable (level 95) +A Z: unantagonizable / B: unantagonisable +A Z: unantagonizabler / B: unantagonisabler +A Z: unantagonizables / B: unantagonisables +A Z: unantagonizablest / B: unantagonisablest +A Z: unantagonizable's / B: unantagonisable's + +# unantagonized (level 95) +A Z: unantagonized / B: unantagonised +A Z: unantagonizedder / B: unantagonisedder +A Z: unantagonizeddest / B: unantagoniseddest + +# unantagonizing (level 95) +A Z: unantagonizing / B: unantagonising +A Z: unantagonizinger / B: unantagonisinger +A Z: unantagonizingest / B: unantagonisingest + +# unapologizing (level 80) +A Z: unapologizing / B: unapologising +A Z: unapologizing's / B: unapologising's + +# unapostatized (level 95) +A Z: unapostatized / B: unapostatised +A Z: unapostatizeds / B: unapostatiseds +A Z: unapostatized's / B: unapostatised's + +# unappetizing (level 50) +A Z: unappetizing / B: unappetising +A Z: unappetizinger / B: unappetisinger +A Z: unappetizingest / B: unappetisingest + +# unappetizingly (level 80) +A Z: unappetizingly / B: unappetisingly +A Z: unappetizinglier / B: unappetisinglier +A Z: unappetizingliest / B: unappetisingliest + +# unapprized (level 80) +A Z: unapprized / B: unapprised + +# unarbored (level 95) +A: unarbored / B: unarboured + +# unarmored (level 60) +A: unarmored / B: unarmoured +A: unarmoredder / B: unarmouredder +A: unarmoreddest / B: unarmoureddest + +# unauthorize (level 95) +A Z: unauthorize / B: unauthorise +A Z: unauthorizes / B: unauthorises + +# unauthorized (level 20) +A Z: unauthorized / B: unauthorised +A Z: unauthorizedder / B: unauthorisedder +A Z: unauthorizeddest / B: unauthoriseddest + +# unauthorizedly (level 95) +A Z: unauthorizedly / B: unauthorisedly + +# unauthorizedness (level 95) +A Z: unauthorizedness / B: unauthorisedness + +# unbaptize (level 60) +A Z: unbaptize / B: unbaptise +A Z: unbaptized / B: unbaptised +A Z: unbaptizing / B: unbaptising +A Z: unbaptizes / B: unbaptises + +# unbarbarize (level 95) +A Z: unbarbarize / B: unbarbarise + +# unbarbarized (level 95) +A Z: unbarbarized / B: unbarbarised + +# unbarbarizing (level 95) +A Z: unbarbarizing / B: unbarbarising + +# unbarricaded (level 80) +A: unbarricaded / B: unbarricadoed + +# unbastardized (level 95) +A Z: unbastardized / B: unbastardised +A Z: unbastardizedder / B: unbastardisedder +A Z: unbastardizeddest / B: unbastardiseddest + +# unbeknownst (level 50) +A Bv C: unbeknownst / A. B Cv: unbeknown + +# unbrutalize (level 95) +A Z: unbrutalize / B: unbrutalise +A Z: unbrutalized / B: unbrutalised +A Z: unbrutalizing / B: unbrutalising +A Z: unbrutalizes / B: unbrutalises + +# unbrutize (level 95) +A Z: unbrutize / B: unbrutise +A Z: unbrutized / B: unbrutised +A Z: unbrutizing / B: unbrutising +A Z: unbrutizes / B: unbrutises + +# uncanceled (level 70) +A: uncanceled / Av B: uncancelled +A: uncanceledder / Av B: uncancelledder +A: uncanceleddest / Av B: uncancelleddest + +# uncandor (level 95) +A: uncandor / B: uncandour + +# uncanonization (level 95) +A Z: uncanonization / B: uncanonisation +A Z: uncanonization's / B: uncanonisation's + +# uncanonize (level 80) +A Z: uncanonize / B: uncanonise +A Z: uncanonized / B: uncanonised +A Z: uncanonizing / B: uncanonising +A Z: uncanonizes / B: uncanonises + +# uncantonized (level 95) +A Z: uncantonized / B: uncantonised +A Z: uncantonizeds / B: uncantoniseds +A Z: uncantonized's / B: uncantonised's + +# uncapitalized (level 70) +A Z: uncapitalized / B: uncapitalised +A Z: uncapitalizedder / B: uncapitalisedder +A Z: uncapitalizeddest / B: uncapitaliseddest + +# uncaramelized (level 95) +A Z: uncaramelized / B: uncaramelised + +# uncatechized (level 95) +A Z: uncatechized / B: uncatechised +A Z: uncatechizeds / B: uncatechiseds +A Z: uncatechized's / B: uncatechised's + +# uncatechizedness (level 95) +A Z: uncatechizedness / B: uncatechisedness + +# uncategorized (level 95) +A Z: uncategorized / B: uncategorised +A Z: uncategorizedder / B: uncategorisedder +A Z: uncategorizeddest / B: uncategoriseddest + +# uncatholicize (level 95) +A Z: uncatholicize / B: uncatholicise +A Z: uncatholicized / B: uncatholicised +A Z: uncatholicizing / B: uncatholicising +A Z: uncatholicizes / B: uncatholicises + +# uncauterized (level 95) +A Z: uncauterized / B: uncauterised +A Z: uncauterizeds / B: uncauteriseds +A Z: uncauterized's / B: uncauterised's + +# uncelestialized (level 95) +A Z: uncelestialized / B: uncelestialised +A Z: uncelestializeds / B: uncelestialiseds +A Z: uncelestialized's / B: uncelestialised's + +# uncenter (level 95) +A: uncenter / B: uncentre + +# uncentralized (level 95) +A Z: uncentralized / B: uncentralised + +# uncharacterized (level 95) +A Z: uncharacterized / B: uncharacterised +A Z: uncharacterizedder / B: uncharacterisedder +A Z: uncharacterizeddest / B: uncharacteriseddest + +# unchastizable (level 80) +A Z: unchastizable / B: unchastisable + +# unchastized (level 80) +A Z: unchastized / B: unchastised + +# unchloridized (level 95) +A Z: unchloridized / B: unchloridised +A Z: unchloridizeds / B: unchloridiseds +A Z: unchloridized's / B: unchloridised's + +# unchristianize (level 80) +A Z: unchristianize / B: unchristianise +A Z: unchristianized / B: unchristianised +A Z: unchristianizing / B: unchristianising +A Z: unchristianizes / B: unchristianises + +# uncircularized (level 95) +A Z: uncircularized / B: uncircularised +A Z: uncircularizedder / B: uncircularisedder +A Z: uncircularizeddest / B: uncirculariseddest +A Z: uncircularizeds / B: uncirculariseds +A Z: uncircularized's / B: uncircularised's + +# uncivilizable (level 95) +A Z: uncivilizable / B: uncivilisable +A Z: uncivilizabler / B: uncivilisabler +A Z: uncivilizables / B: uncivilisables +A Z: uncivilizablest / B: uncivilisablest +A Z: uncivilizable's / B: uncivilisable's + +# uncivilize (level 95) +A Z: uncivilize / B: uncivilise +A Z: uncivilizes / B: uncivilises + +# uncivilized (level 50) +A Z: uncivilized / B: uncivilised + +# uncivilizedly (level 80) +A Z: uncivilizedly / B: uncivilisedly + +# uncivilizedness (level 80) +A Z: uncivilizedness / B: uncivilisedness + +# unclericalize (level 95) +A Z: unclericalize / B: unclericalise +A Z: unclericalizes / B: unclericalises + +# uncognizable (level 95) +A Z: uncognizable / B: uncognisable + +# uncolonize (level 95) +A Z: uncolonize / B: uncolonise +A Z: uncolonized / B: uncolonised +A Z: uncolonizing / B: uncolonising +A Z: uncolonizes / B: uncolonises + +# uncolorable (level 95) +A: uncolorable / B: uncolourable +A: uncolorabler / B: uncolourabler +A: uncolorables / B: uncolourables +A: uncolorablest / B: uncolourablest +A: uncolorable's / B: uncolourable's + +# uncolorably (level 95) +A: uncolorably / B: uncolourably +A: uncolorablier / B: uncolourablier +A: uncolorablies / B: uncolourablies +A: uncolorabliest / B: uncolourabliest + +# uncolored (level 60) +A Cv DV: uncolored / B C D: uncoloured +A Cv DV: uncoloredder / B C D: uncolouredder +A Cv DV: uncoloreddest / B C D: uncoloureddest +A Cv DV: uncoloreds / B C D: uncoloureds + +# uncoloredly (level 95) +A: uncoloredly / B: uncolouredly +A: uncoloredlier / B: uncolouredlier +A: uncoloredliest / B: uncolouredliest + +# uncoloredness (level 95) +A: uncoloredness / B: uncolouredness +A: uncolorednesses / B: uncolourednesses +A: uncoloredness's / B: uncolouredness's + +# unconcerted (level 80) +A: unconcerted / B: unconcreted + +# unconventionalize (level 95) +A Z: unconventionalize / B: unconventionalise +A Z: unconventionalizes / B: unconventionalises + +# uncriticizable (level 95) +A Z: uncriticizable / B: uncriticisable +A Z: uncriticizabler / B: uncriticisabler +A Z: uncriticizables / B: uncriticisables +A Z: uncriticizablest / B: uncriticisablest +A Z: uncriticizable's / B: uncriticisable's + +# uncriticizably (level 95) +A Z: uncriticizably / B: uncriticisably + +# uncriticized (level 95) +A Z: uncriticized / B: uncriticised + +# uncriticizing (level 95) +A Z: uncriticizing / B: uncriticising + +# uncriticizingly (level 95) +A Z: uncriticizingly / B: uncriticisingly + +# uncrystallizability (level 95) +A Z: uncrystallizability / B: uncrystallisability +A Z: uncrystallizabilities / B: uncrystallisabilities +A Z: uncrystallizability's / B: uncrystallisability's + +# uncrystallizable (level 80) +A Z: uncrystallizable / B: uncrystallisable +A Z: uncrystallizabler / B: uncrystallisabler +A Z: uncrystallizables / B: uncrystallisables +A Z: uncrystallizablest / B: uncrystallisablest +A Z: uncrystallizable's / B: uncrystallisable's + +# uncrystallized (level 70) +A Z: uncrystallized / B: uncrystallised + +# uncurricularized (level 95) +A Z: uncurricularized / B: uncurricularised +A Z: uncurricularizeds / B: uncurriculariseds +A Z: uncurricularized's / B: uncurricularised's + +# undefense (level 95) +A: undefense / B: undefence +A: undefenses / B: undefences +A: undefense's / B: undefence's + +# undemagnetizable (level 95) +A Z: undemagnetizable / B: undemagnetisable +A Z: undemagnetizables / B: undemagnetisables +A Z: undemagnetizable's / B: undemagnetisable's + +# undemocratization (level 95) +A Z: undemocratization / B: undemocratisation +A Z: undemocratization's / B: undemocratisation's + +# undemocratize (level 95) +A Z: undemocratize / B: undemocratise +A Z: undemocratized / B: undemocratised +A Z: undemocratizing / B: undemocratising +A Z: undemocratizes / B: undemocratises + +# undenominationalize (level 95) +A Z: undenominationalize / B: undenominationalise +A Z: undenominationalizes / B: undenominationalises + +# undercapitalization (level 80) +A Z: undercapitalization / B: undercapitalisation +A Z: undercapitalizations / B: undercapitalisations +A Z: undercapitalization's / B: undercapitalisation's + +# undercapitalize (level 80) +A Z: undercapitalize / B: undercapitalise +A Z: undercapitalized / B: undercapitalised +A Z: undercapitalizing / B: undercapitalising +A Z: undercapitalizes / B: undercapitalises + +# undercolor (level 95) +A: undercolor / B: undercolour +A: undercolored / B: undercoloured +A: undercoloring / B: undercolouring +A: undercolor's / B: undercolour's +A: undercolorings / B: undercolourings +A: undercolors / B: undercolours + +# underemphasize (level 70) +A Z: underemphasize / B: underemphasise +A Z: underemphasized / B: underemphasised +A Z: underemphasizing / B: underemphasising +A Z: underemphasizes / B: underemphasises + +# undergoer (level 95) +A: undergoer / B: undergore + +# underlaborer (level 95) +A: underlaborer / B: underlabourer +A: underlaborers / B: underlabourers +A: underlaborer's / B: underlabourer's + +# underorganization (level 95) +A Z: underorganization / B: underorganisation +A Z: underorganizations / B: underorganisations +A Z: underorganization's / B: underorganisation's + +# underoxidize (level 95) +A Z: underoxidize / B: underoxidise +A Z: underoxidized / B: underoxidised +A Z: underoxidizing / B: underoxidising +A Z: underoxidizes / B: underoxidises + +# underprize (level 80) +A Z: underprize / B: underprise +A Z: underprized / B: underprised +A Z: underprizing / B: underprising +A Z: underprizes / B: underprises + +# underrealize (level 95) +A Z: underrealize / B: underrealise +A Z: underrealized / B: underrealised +A Z: underrealizing / B: underrealising +A Z: underrealizes / B: underrealises + +# undersavior (level 95) +A: undersavior / B: undersaviour +A: undersaviors / B: undersaviours +A: undersavior's / B: undersaviour's + +# undersized (level 50) +_: undersized / _V: undersize + +# underutilization (level 80) +A Z: underutilization / B: underutilisation +A Z: underutilizations / B: underutilisations +A Z: underutilization's / B: underutilisation's + +# underutilize (level 55) +A Z: underutilize / B: underutilise +A Z: underutilized / B: underutilised +A Z: underutilizing / B: underutilising +A Z: underutilizes / B: underutilises + +# undervitalized (level 95) +A Z: undervitalized / B: undervitalised +A Z: undervitalizeds / B: undervitaliseds +A Z: undervitalized's / B: undervitalised's + +# undialyzed (level 95) +A: undialyzed / B: undialysed +A: undialyzeds / B: undialyseds +A: undialyzed's / B: undialysed's + +# undiphthongize (level 95) +A Z: undiphthongize / B: undiphthongise +A Z: undiphthongizes / B: undiphthongises + +# undiscolored (level 95) +A: undiscolored / B: undiscoloured +A: undiscoloredder / B: undiscolouredder +A: undiscoloreddest / B: undiscoloureddest +A: undiscoloreds / B: undiscoloureds +A: undiscolored's / B: undiscoloured's + +# undishonored (level 80) +A: undishonored / B: undishonoured + +# undisorganized (level 95) +A Z: undisorganized / B: undisorganised + +# undramatizable (level 95) +A Z: undramatizable / B: undramatisable +A Z: undramatizabler / B: undramatisabler +A Z: undramatizables / B: undramatisables +A Z: undramatizablest / B: undramatisablest +A Z: undramatizable's / B: undramatisable's + +# undramatized (level 80) +A Z: undramatized / B: undramatised +A Z: undramatizeds / B: undramatiseds +A Z: undramatized's / B: undramatised's + +# undreamed (level 60) +_: undreamed / _v: undreamt + +# undualize (level 95) +A Z: undualize / B: undualise +A Z: undualizes / B: undualises + +# uneconomizing (level 95) +A Z: uneconomizing / B: uneconomising + +# unenamored (level 95) +A: unenamored / B: unenamoured +A: unenamoredder / B: unenamouredder +A: unenamoreddest / B: unenamoureddest +A: unenamoreds / B: unenamoureds +A: unenamored's / B: unenamoured's + +# unendeavored (level 95) +A: unendeavored / B: unendeavoured + +# unenergized (level 95) +A Z: unenergized / B: unenergised +A Z: unenergizeds / B: unenergiseds +A Z: unenergized's / B: unenergised's + +# unepitomized (level 95) +A Z: unepitomized / B: unepitomised +A Z: unepitomizedder / B: unepitomisedder +A Z: unepitomizeddest / B: unepitomiseddest + +# unequaled (level 35) +A: unequaled / B: unequalled +A: unequaledder / B: unequalledder +A: unequaleddest / B: unequalleddest + +# unequalize (level 95) +A Z: unequalize / B: unequalise +A Z: unequalized / B: unequalised +A Z: unequalizing / B: unequalising +A Z: unequalizes / B: unequalises + +# uneulogized (level 95) +A Z: uneulogized / B: uneulogised +A Z: uneulogizedder / B: uneulogisedder +A Z: uneulogizeddest / B: uneulogiseddest +A Z: uneulogizeds / B: uneulogiseds +A Z: uneulogized's / B: uneulogised's + +# unevangelized (level 95) +A Z: unevangelized / B: unevangelised +A Z: unevangelizedder / B: unevangelisedder +A Z: unevangelizeddest / B: unevangeliseddest +A Z: unevangelizeds / B: unevangeliseds +A Z: unevangelized's / B: unevangelised's + +# unfamiliarized (level 95) +A Z: unfamiliarized / B: unfamiliarised +A Z: unfamiliarizedder / B: unfamiliarisedder +A Z: unfamiliarizeddest / B: unfamiliariseddest + +# unfavorable (level 35) +A Cv DV: unfavorable / B C D: unfavourable +A Cv DV: unfavorabler / B C D: unfavourabler +A Cv DV: unfavorables / B C D: unfavourables +A Cv DV: unfavorablest / B C D: unfavourablest +A Cv DV: unfavorable's / B C D: unfavourable's + +# unfavorableness (level 80) +A Cv DV: unfavorableness / B C D: unfavourableness +A Cv DV: unfavorablenesses / B C D: unfavourablenesses +A Cv DV: unfavorableness's / B C D: unfavourableness's + +# unfavorably (level 50) +A Cv DV: unfavorably / B C D: unfavourably +A Cv DV: unfavorablier / B C D: unfavourablier +A Cv DV: unfavorabliest / B C D: unfavourabliest + +# unfavored (level 95) +A Cv DV: unfavored / B C D: unfavoured +A Cv DV: unfavoredder / B C D: unfavouredder +A Cv DV: unfavoreddest / B C D: unfavoureddest +A Cv DV: unfavored's / B C D: unfavoured's + +# unfavoring (level 95) +A Cv DV: unfavoring / B C D: unfavouring +A Cv DV: unfavoringer / B C D: unfavouringer +A Cv DV: unfavoringest / B C D: unfavouringest +A Cv DV: unfavorings / B C D: unfavourings +A Cv DV: unfavoring's / B C D: unfavouring's + +# unfavorite (level 80) +A Cv DV: unfavorite / B C D: unfavourite +A Cv DV: unfavoriter / B C D: unfavouriter +A Cv DV: unfavorites / B C D: unfavourites +A Cv DV: unfavoritest / B C D: unfavouritest +A Cv DV: unfavorite's / B C D: unfavourite's + +# unfeminize (level 95) +A Z: unfeminize / B: unfeminise + +# unfeminized (level 95) +A Z: unfeminized / B: unfeminised + +# unfeminizing (level 95) +A Z: unfeminizing / B: unfeminising + +# unfertilizable (level 95) +A Z: unfertilizable / B: unfertilisable +A Z: unfertilizabler / B: unfertilisabler +A Z: unfertilizables / B: unfertilisables +A Z: unfertilizablest / B: unfertilisablest +A Z: unfertilizable's / B: unfertilisable's + +# unfertilized (level 60) +A Z: unfertilized / B: unfertilised +A Z: unfertilizedder / B: unfertilisedder +A Z: unfertilizeddest / B: unfertiliseddest + +# unfertilizing (level 95) +A Z: unfertilizing / B: unfertilising + +# unfeudalize (level 80) +A Z: unfeudalize / B: unfeudalise +A Z: unfeudalized / B: unfeudalised +A Z: unfeudalizing / B: unfeudalising +A Z: unfeudalizes / B: unfeudalises + +# unflavored (level 60) +A Cv DV: unflavored / B C D: unflavoured +A Cv DV: unflavoredder / B C D: unflavouredder +A Cv DV: unflavoreddest / B C D: unflavoureddest + +# unflavorous (level 95) +A: unflavorous / B: unflavourous + +# unfocused (level 55) +A B: unfocused / AV Bv: unfocussed + +# unformalized (level 80) +A Z: unformalized / B: unformalised +A Z: unformalizedder / B: unformalisedder +A Z: unformalizeddest / B: unformaliseddest + +# unfossilized (level 80) +A Z: unfossilized / B: unfossilised +A Z: unfossilizedder / B: unfossilisedder +A Z: unfossilizeddest / B: unfossiliseddest +A Z: unfossilizeds / B: unfossiliseds +A Z: unfossilized's / B: unfossilised's + +# unfraternized (level 95) +A Z: unfraternized / B: unfraternised + +# unfraternizing (level 95) +A Z: unfraternizing / B: unfraternising +A Z: unfraternizings / B: unfraternisings +A Z: unfraternizing's / B: unfraternising's + +# ungalvanized (level 95) +A Z: ungalvanized / B: ungalvanised +A Z: ungalvanizeds / B: ungalvaniseds +A Z: ungalvanized's / B: ungalvanised's + +# ungelatinizable (level 95) +A Z: ungelatinizable / B: ungelatinisable +A Z: ungelatinizables / B: ungelatinisables +A Z: ungelatinizable's / B: ungelatinisable's + +# ungelatinized (level 95) +A Z: ungelatinized / B: ungelatinised +A Z: ungelatinizeds / B: ungelatiniseds +A Z: ungelatinized's / B: ungelatinised's + +# ungeneralized (level 95) +A Z: ungeneralized / B: ungeneralised +A Z: ungeneralizedder / B: ungeneralisedder +A Z: ungeneralizeddest / B: ungeneraliseddest + +# ungeneralizing (level 95) +A Z: ungeneralizing / B: ungeneralising + +# ungentilize (level 95) +A Z: ungentilize / B: ungentilise +A Z: ungentilizes / B: ungentilises + +# ungentlemanize (level 95) +A Z: ungentlemanize / B: ungentlemanise +A Z: ungentlemanizes / B: ungentlemanises + +# unglamorous (level 70) +A B: unglamorous / B-: unglamourous + +# unglamorously (level 95) +A B: unglamorously / B-: unglamourously + +# ungospelized (level 95) +A Z: ungospelized / B: ungospelised +A Z: ungospelizeds / B: ungospeliseds +A Z: ungospelized's / B: ungospelised's + +# ungraphitized (level 95) +A Z: ungraphitized / B: ungraphitised +A Z: ungraphitizeds / B: ungraphitiseds +A Z: ungraphitized's / B: ungraphitised's + +# unharbor (level 80) +A: unharbor / B: unharbour +A: unharbor's / B: unharbour's +A: unharbored / B: unharboured + +# unharmonize (level 95) +A Z: unharmonize / B: unharmonise +A Z: unharmonized / B: unharmonised +A Z: unharmonizing / B: unharmonising +A Z: unharmonizes / B: unharmonises + +# unheroize (level 95) +A Z: unheroize / B: unheroise +A Z: unheroizes / B: unheroises + +# unhonorable (level 95) +A: unhonorable / B: unhonourable +A: unhonorables / B: unhonourables +A: unhonorable's / B: unhonourable's + +# unhonorably (level 95) +A: unhonorably / B: unhonourably +A: unhonorablies / B: unhonourablies + +# unhonored (level 70) +A: unhonored / B: unhonoured +A: unhonoredder / B: unhonouredder +A: unhonoreddest / B: unhonoureddest + +# unhouseled (level 80) +A: unhouseled / B: unhouselled + +# unhumanize (level 80) +A Z: unhumanize / B: unhumanise +A Z: unhumanized / B: unhumanised +A Z: unhumanizing / B: unhumanising +A Z: unhumanizes / B: unhumanises + +# unhumored (level 95) +A: unhumored / B: unhumoured +A: unhumoredder / B: unhumouredder +A: unhumoreddest / B: unhumoureddest + +# unhumorous (level 80) +A: unhumorous / B: unhumourous + +# unhumorously (level 95) +A: unhumorously / B: unhumourously + +# unhydrolyzed (level 80) +A: unhydrolyzed / B: unhydrolysed +A: unhydrolyzeds / B: unhydrolyseds +A: unhydrolyzed's / B: unhydrolysed's + +# unhypnotizable (level 95) +A Z: unhypnotizable / B: unhypnotisable +A Z: unhypnotizabler / B: unhypnotisabler +A Z: unhypnotizables / B: unhypnotisables +A Z: unhypnotizablest / B: unhypnotisablest +A Z: unhypnotizable's / B: unhypnotisable's + +# unhypnotize (level 95) +A Z: unhypnotize / B: unhypnotise +A Z: unhypnotized / B: unhypnotised +A Z: unhypnotizing / B: unhypnotising +A Z: unhypnotizes / B: unhypnotises + +# unicolor (level 80) +A: unicolor / B: unicolour + +# unicolorate (level 80) +A: unicolorate / B: unicolourate + +# unicolored (level 80) +A: unicolored / B: unicoloured + +# unicolorous (level 80) +A: unicolorous / B: unicolourous + +# unidealized (level 95) +A Z: unidealized / B: unidealised +A Z: unidealizedder / B: unidealisedder +A Z: unidealizeddest / B: unidealiseddest + +# unidolized (level 95) +A Z: unidolized / B: unidolised +A Z: unidolizedder / B: unidolisedder +A Z: unidolizeddest / B: unidoliseddest +A Z: unidolizeds / B: unidoliseds +A Z: unidolized's / B: unidolised's + +# uniformization (level 95) +A Z: uniformization / B: uniformisation +A Z: uniformizations / B: uniformisations +A Z: uniformization's / B: uniformisation's + +# uniformize (level 70) +A Z: uniformize / B: uniformise +A Z: uniformized / B: uniformised +A Z: uniformizing / B: uniformising +A Z: uniformizes / B: uniformises + +# unilateralization (level 95) +A Z: unilateralization / B: unilateralisation +A Z: unilateralizations / B: unilateralisations +A Z: unilateralization's / B: unilateralisation's + +# unilateralize (level 95) +A Z: unilateralize / B: unilateralise +A Z: unilateralizes / B: unilateralises + +# unimmortalize (level 95) +A Z: unimmortalize / B: unimmortalise +A Z: unimmortalizes / B: unimmortalises + +# unimmortalized (level 95) +A Z: unimmortalized / B: unimmortalised + +# unimmunized (level 80) +A Z: unimmunized / B: unimmunised + +# unindividualize (level 95) +A Z: unindividualize / B: unindividualise +A Z: unindividualizes / B: unindividualises + +# unindividualized (level 95) +A Z: unindividualized / B: unindividualised + +# unindustrialized (level 80) +A Z: unindustrialized / B: unindustrialised +A Z: unindustrializeds / B: unindustrialiseds +A Z: unindustrialized's / B: unindustrialised's + +# uninitializable (level 99) +A Z: uninitializable / B: uninitialisable + +# uninitialized (level 50) +A Z: uninitialized / B: uninitialised + +# unionization (level 50) +A Z: unionization / B: unionisation +A Z: unionizations / B: unionisations +A Z: unionization's / B: unionisation's + +# unionize (level 35) +A Z: unionize / B: unionise +A Z: unionized / B: unionised +A Z: unionizing / B: unionising +A Z: unionizes / B: unionises + +# unionizer (level 70) +A Z: unionizer / B: unioniser +A Z: unionizers / B: unionisers + +# unitalicized (level 95) +A Z: unitalicized / B: unitalicised + +# Unitarianize (level 95) +A Z: Unitarianize / B: Unitarianise +A Z: Unitarianizes / B: Unitarianises +A Z: Unitarianize's / B: Unitarianise's + +# unitemized (level 95) +A Z: unitemized / B: unitemised + +# unitization (level 80) +A Z: unitization / B: unitisation +A Z: unitizations / B: unitisations +A Z: unitization's / B: unitisation's + +# unitize (level 60) +A Z: unitize / B: unitise +A Z: unitized / B: unitised +A Z: unitizing / B: unitising +A Z: unitizes / B: unitises + +# universalization (level 70) +A Z: universalization / B: universalisation +A Z: universalizations / B: universalisations +A Z: universalization's / B: universalisation's + +# universalize (level 60) +A Z: universalize / B: universalise +A Z: universalized / B: universalised +A Z: universalizing / B: universalising +A Z: universalizes / B: universalises + +# universalizer (level 95) +A Z: universalizer / B: universaliser +A Z: universalizers / B: universalisers +A Z: universalizer's / B: universaliser's + +# unjeopardized (level 95) +A Z: unjeopardized / B: unjeopardised + +# unjournalized (level 95) +A Z: unjournalized / B: unjournalised + +# unkennel (level 80) +A: unkenneled / B: unkennelled +A: unkenneling / B: unkennelling + +# unlabeled (level 35) +A: unlabeled / B: unlabelled +A: unlabeledder / B: unlabelledder +A: unlabeleddest / B: unlabelleddest + +# unlabialize (level 95) +A Z: unlabialize / B: unlabialise +A Z: unlabialized / B: unlabialised +A Z: unlabializing / B: unlabialising +A Z: unlabializes / B: unlabialises + +# unlaborable (level 95) +A: unlaborable / B: unlabourable +A: unlaborables / B: unlabourables +A: unlaborable's / B: unlabourable's + +# unlabored (level 80) +A: unlabored / B: unlaboured +A: unlaboredder / B: unlabouredder +A: unlaboreddest / B: unlaboureddest +A: unlabored's / B: unlaboured's + +# unlaboring (level 80) +A: unlaboring / B: unlabouring +A: unlaboringer / B: unlabouringer +A: unlaboringest / B: unlabouringest +A: unlaborings / B: unlabourings +A: unlaboring's / B: unlabouring's + +# unlearned (level 50) +A B. Z: unlearned / B Zv: unlearnt | + +# unlegalized (level 95) +A Z: unlegalized / B: unlegalised +A Z: unlegalizedder / B: unlegalisedder +A Z: unlegalizeddest / B: unlegaliseddest + +# unlevel (level 80) +A: unleveled / B: unlevelled +A: unleveling / B: unlevelling + +# unliberalized (level 95) +A Z: unliberalized / B: unliberalised +A Z: unliberalizedder / B: unliberalisedder +A Z: unliberalizeddest / B: unliberaliseddest + +# unlionized (level 95) +A Z: unlionized / B: unlionised + +# unliteralized (level 95) +A Z: unliteralized / B: unliteralised + +# unlocalizable (level 95) +A Z: unlocalizable / B: unlocalisable +A Z: unlocalizabler / B: unlocalisabler +A Z: unlocalizables / B: unlocalisables +A Z: unlocalizablest / B: unlocalisablest +A Z: unlocalizable's / B: unlocalisable's + +# unlocalize (level 80) +A Z: unlocalize / B: unlocalise +A Z: unlocalized / B: unlocalised +A Z: unlocalizing / B: unlocalising +A Z: unlocalizes / B: unlocalises + +# unmacadamized (level 80) +A Z: unmacadamized / B: unmacadamised + +# unmagnetized (level 95) +A Z: unmagnetized / B: unmagnetised +A Z: unmagnetizedder / B: unmagnetisedder +A Z: unmagnetizeddest / B: unmagnetiseddest +A Z: unmagnetizeds / B: unmagnetiseds +A Z: unmagnetized's / B: unmagnetised's + +# unmaterialized (level 80) +A Z: unmaterialized / B: unmaterialised + +# unmechanize (level 70) +A Z: unmechanize / B: unmechanise +A Z: unmechanized / B: unmechanised +A Z: unmechanizing / B: unmechanising +A Z: unmechanizes / B: unmechanises + +# unmediatized (level 95) +A Z: unmediatized / B: unmediatised +A Z: unmediatizeds / B: unmediatiseds +A Z: unmediatized's / B: unmediatised's + +# unmedieval (level 95) +A: unmedieval / B: unmediaeval + +# unmelodized (level 95) +A Z: unmelodized / B: unmelodised + +# unmemorialized (level 95) +A Z: unmemorialized / B: unmemorialised +A Z: unmemorializedder / B: unmemorialisedder +A Z: unmemorializeddest / B: unmemorialiseddest +A Z: unmemorializeds / B: unmemorialiseds +A Z: unmemorialized's / B: unmemorialised's + +# unmemorized (level 70) +A Z: unmemorized / B: unmemorised + +# unmercerized (level 95) +A Z: unmercerized / B: unmercerised +A Z: unmercerizeds / B: unmerceriseds +A Z: unmercerized's / B: unmercerised's + +# unmesmerize (level 95) +A Z: unmesmerize / B: unmesmerise +A Z: unmesmerizes / B: unmesmerises + +# unmesmerized (level 95) +A Z: unmesmerized / B: unmesmerised +A Z: unmesmerizedder / B: unmesmerisedder +A Z: unmesmerizeddest / B: unmesmeriseddest + +# unmetalized (level 95) +A: unmetalized / B: unmetallised / Z: unmetallized +A: unmetalizeds / B: unmetalliseds / Z: unmetallizeds +A: unmetalized's / B: unmetallised's / Z: unmetallized's + +# unmethodized (level 80) +A Z: unmethodized / B: unmethodised +A Z: unmethodizedder / B: unmethodisedder +A Z: unmethodizeddest / B: unmethodiseddest +A Z: unmethodizeds / B: unmethodiseds +A Z: unmethodized's / B: unmethodised's + +# unmethodizing (level 95) +A Z: unmethodizing / B: unmethodising +A Z: unmethodizinger / B: unmethodisinger +A Z: unmethodizingest / B: unmethodisingest +A Z: unmethodizings / B: unmethodisings +A Z: unmethodizing's / B: unmethodising's + +# unmilitarized (level 95) +A Z: unmilitarized / B: unmilitarised + +# unmineralized (level 95) +A Z: unmineralized / B: unmineralised +A Z: unmineralizedder / B: unmineralisedder +A Z: unmineralizeddest / B: unmineraliseddest +A Z: unmineralizeds / B: unmineraliseds +A Z: unmineralized's / B: unmineralised's + +# unminimized (level 95) +A Z: unminimized / B: unminimised +A Z: unminimizedder / B: unminimisedder +A Z: unminimizeddest / B: unminimiseddest + +# unminimizing (level 95) +A Z: unminimizing / B: unminimising + +# unmissionized (level 95) +A Z: unmissionized / B: unmissionised +A Z: unmissionizeds / B: unmissioniseds +A Z: unmissionized's / B: unmissionised's + +# unmiter (level 80) +A: unmiter / B: unmitre +A: unmiters / B: unmitres + +# unmobilized (level 95) +A Z: unmobilized / B: unmobilised +A Z: unmobilizedder / B: unmobilisedder +A Z: unmobilizeddest / B: unmobiliseddest +A Z: unmobilizeds / B: unmobiliseds +A Z: unmobilized's / B: unmobilised's + +# unmodernize (level 95) +A Z: unmodernize / B: unmodernise +A Z: unmodernizes / B: unmodernises + +# unmodernized (level 80) +A Z: unmodernized / B: unmodernised +A Z: unmodernizedder / B: unmodernisedder +A Z: unmodernizeddest / B: unmoderniseddest + +# unmonopolize (level 95) +A Z: unmonopolize / B: unmonopolise +A Z: unmonopolized / B: unmonopolised +A Z: unmonopolizedder / B: unmonopolisedder +A Z: unmonopolizeddest / B: unmonopoliseddest +A Z: unmonopolizing / B: unmonopolising +A Z: unmonopolizes / B: unmonopolises +A Z: unmonopolizinger / B: unmonopolisinger +A Z: unmonopolizingest / B: unmonopolisingest +A Z: unmonopolizings / B: unmonopolisings + +# unmoralize (level 80) +A Z: unmoralize / B: unmoralise +A Z: unmoralized / B: unmoralised +A Z: unmoralizing / B: unmoralising +A Z: unmoralizes / B: unmoralises +A Z: unmoralizinger / B: unmoralisinger +A Z: unmoralizingest / B: unmoralisingest +A Z: unmoralizings / B: unmoralisings + +# unmotorized (level 95) +A Z: unmotorized / B: unmotorised +A Z: unmotorizedder / B: unmotorisedder +A Z: unmotorizeddest / B: unmotoriseddest + +# unmunicipalized (level 95) +A Z: unmunicipalized / B: unmunicipalised +A Z: unmunicipalizedder / B: unmunicipalisedder +A Z: unmunicipalizeddest / B: unmunicipaliseddest +A Z: unmunicipalizeds / B: unmunicipaliseds +A Z: unmunicipalized's / B: unmunicipalised's + +# unmutualized (level 95) +A Z: unmutualized / B: unmutualised +A Z: unmutualizedder / B: unmutualisedder +A Z: unmutualizeddest / B: unmutualiseddest +A Z: unmutualizeds / B: unmutualiseds +A Z: unmutualized's / B: unmutualised's + +# unmysticize (level 95) +A Z: unmysticize / B: unmysticise +A Z: unmysticized / B: unmysticised +A Z: unmysticizing / B: unmysticising +A Z: unmysticizes / B: unmysticises + +# unnationalized (level 95) +A Z: unnationalized / B: unnationalised +A Z: unnationalizedder / B: unnationalisedder +A Z: unnationalizeddest / B: unnationaliseddest + +# unnaturalizable (level 95) +A Z: unnaturalizable / B: unnaturalisable +A Z: unnaturalizables / B: unnaturalisables +A Z: unnaturalizable's / B: unnaturalisable's + +# unnaturalize (level 70) +A Z: unnaturalize / B: unnaturalise +A Z: unnaturalized / B: unnaturalised +A Z: unnaturalizing / B: unnaturalising +A Z: unnaturalizes / B: unnaturalises + +# unneighbored (level 80) +A: unneighbored / B: unneighboured + +# unneighborlike (level 95) +A: unneighborlike / B: unneighbourlike +A: unneighborlikes / B: unneighbourlikes +A: unneighborlike's / B: unneighbourlike's + +# unneighborliness (level 80) +A: unneighborliness / B: unneighbourliness +A: unneighborlinesses / B: unneighbourlinesses +A: unneighborliness's / B: unneighbourliness's + +# unneighborly (level 70) +A: unneighborly / B: unneighbourly +A: unneighborlier / B: unneighbourlier +A: unneighborliest / B: unneighbourliest + +# unneutralize (level 95) +A Z: unneutralize / B: unneutralise + +# unneutralized (level 95) +A Z: unneutralized / B: unneutralised + +# unneutralizing (level 95) +A Z: unneutralizing / B: unneutralising + +# unnitrogenized (level 95) +A Z: unnitrogenized / B: unnitrogenised +A Z: unnitrogenizedder / B: unnitrogenisedder +A Z: unnitrogenizeddest / B: unnitrogeniseddest +A Z: unnitrogenizeds / B: unnitrogeniseds +A Z: unnitrogenized's / B: unnitrogenised's + +# unnoncolorables (level 99) +A: unnoncolorables / B: unnoncolourables + +# unnoncolorably (level 99) +A: unnoncolorably / B: unnoncolourably +A: unnoncolorablies / B: unnoncolourablies + +# unnormalize (level 95) +A Z: unnormalize / B: unnormalise +A Z: unnormalized / B: unnormalised +A Z: unnormalizedder / B: unnormalisedder +A Z: unnormalizeddest / B: unnormaliseddest +A Z: unnormalizing / B: unnormalising +A Z: unnormalizes / B: unnormalises +A Z: unnormalizinger / B: unnormalisinger +A Z: unnormalizingest / B: unnormalisingest + +# unoptimize (level 95) +A Z: unoptimize / B: unoptimise +A Z: unoptimized / B: unoptimised +A Z: unoptimizing / B: unoptimising +A Z: unoptimizes / B: unoptimises + +# unorganizable (level 95) +A Z: unorganizable / B: unorganisable +A Z: unorganizabler / B: unorganisabler +A Z: unorganizables / B: unorganisables +A Z: unorganizablest / B: unorganisablest +A Z: unorganizable's / B: unorganisable's + +# unorganize (level 99) +A Z: unorganize / B: unorganise + +# unorganized (level 50) +A Z: unorganized / B: unorganised + +# unorganizedly (level 95) +A Z: unorganizedly / B: unorganisedly + +# unorganizedness (level 95) +A Z: unorganizedness / B: unorganisedness + +# unoxidizable (level 95) +A Z: unoxidizable / B: unoxidisable +A Z: unoxidizabler / B: unoxidisabler +A Z: unoxidizables / B: unoxidisables +A Z: unoxidizablest / B: unoxidisablest +A Z: unoxidizable's / B: unoxidisable's + +# unoxidized (level 80) +A Z: unoxidized / B: unoxidised +A Z: unoxidizedder / B: unoxidisedder +A Z: unoxidizeddest / B: unoxidiseddest + +# unoxygenized (level 95) +A Z: unoxygenized / B: unoxygenised +A Z: unoxygenizeds / B: unoxygeniseds +A Z: unoxygenized's / B: unoxygenised's + +# unpaganize (level 95) +A Z: unpaganize / B: unpaganise +A Z: unpaganizes / B: unpaganises + +# unpalisaded (level 95) +A: unpalisaded / B: unpalisadoed + +# unpanegyrized (level 95) +A Z: unpanegyrized / B: unpanegyrised + +# unparagonized (level 95) +A Z: unparagonized / B: unparagonised +A Z: unparagonizeds / B: unparagoniseds +A Z: unparagonized's / B: unparagonised's + +# unparalleled (level 35) +_: unparalleled / _-: unparallelled + +# unparalyzed (level 95) +A: unparalyzed / B: unparalysed +A: unparalyzedder / B: unparalysedder +A: unparalyzeddest / B: unparalyseddest +A: unparalyzeds / B: unparalyseds +A: unparalyzed's / B: unparalysed's + +# unparameterized (level 99) +A Z: unparameterized / B: unparameterised + +# unparametrized (level 95) +A Z: unparametrized / B: unparametrised + +# unparceled (level 95) +A: unparceled / B: unparcelled +A: unparceledder / B: unparcelledder +A: unparceleddest / B: unparcelleddest + +# unparenthesized (level 95) +A Z: unparenthesized / B: unparenthesised + +# unparticularized (level 95) +A Z: unparticularized / B: unparticularised +A Z: unparticularizedder / B: unparticularisedder +A Z: unparticularizeddest / B: unparticulariseddest +A Z: unparticularizeds / B: unparticulariseds +A Z: unparticularized's / B: unparticularised's + +# unparticularizing (level 95) +A Z: unparticularizing / B: unparticularising +A Z: unparticularizinger / B: unparticularisinger +A Z: unparticularizingest / B: unparticularisingest +A Z: unparticularizings / B: unparticularisings +A Z: unparticularizing's / B: unparticularising's + +# unpartizan (level 95) +A Z: unpartizan / B: unpartisan + +# unpasteurized (level 60) +A Z: unpasteurized / B: unpasteurised + +# unpatronizable (level 95) +A Z: unpatronizable / B: unpatronisable +A Z: unpatronizabler / B: unpatronisabler +A Z: unpatronizables / B: unpatronisables +A Z: unpatronizablest / B: unpatronisablest +A Z: unpatronizable's / B: unpatronisable's + +# unpatronized (level 80) +A Z: unpatronized / B: unpatronised + +# unpatronizing (level 95) +A Z: unpatronizing / B: unpatronising +A Z: unpatronizing's / B: unpatronising's + +# unpauperized (level 95) +A Z: unpauperized / B: unpauperised +A Z: unpauperizeds / B: unpauperiseds +A Z: unpauperized's / B: unpauperised's + +# unpenalized (level 95) +A Z: unpenalized / B: unpenalised +A Z: unpenalizedder / B: unpenalisedder +A Z: unpenalizeddest / B: unpenaliseddest + +# unperceptively (level 95) +A: unperceptively / B: unpreceptively + +# unpersonalized (level 95) +A Z: unpersonalized / B: unpersonalised + +# unpersonalizing (level 95) +A Z: unpersonalizing / B: unpersonalising + +# unphilosophize (level 95) +A Z: unphilosophize / B: unphilosophise +A Z: unphilosophizes / B: unphilosophises + +# unphilosophized (level 95) +A Z: unphilosophized / B: unphilosophised + +# unphosphatized (level 95) +A Z: unphosphatized / B: unphosphatised +A Z: unphosphatizedder / B: unphosphatisedder +A Z: unphosphatizeddest / B: unphosphatiseddest +A Z: unphosphatizeds / B: unphosphatiseds +A Z: unphosphatized's / B: unphosphatised's + +# unpictorialize (level 95) +A Z: unpictorialize / B: unpictorialise + +# unpictorialized (level 95) +A Z: unpictorialized / B: unpictorialised + +# unpictorializing (level 95) +A Z: unpictorializing / B: unpictorialising + +# unplagiarized (level 95) +A Z: unplagiarized / B: unplagiarised +A Z: unplagiarizedder / B: unplagiarisedder +A Z: unplagiarizeddest / B: unplagiariseddest +A Z: unplagiarizeds / B: unplagiariseds +A Z: unplagiarized's / B: unplagiarised's + +# unpluralized (level 95) +A Z: unpluralized / B: unpluralised + +# unpoeticized (level 95) +A Z: unpoeticized / B: unpoeticised +A Z: unpoeticizedder / B: unpoeticisedder +A Z: unpoeticizeddest / B: unpoeticiseddest +A Z: unpoeticizeds / B: unpoeticiseds +A Z: unpoeticized's / B: unpoeticised's + +# unpoetize (level 95) +A Z: unpoetize / B: unpoetise +A Z: unpoetizes / B: unpoetises + +# unpoetized (level 95) +A Z: unpoetized / B: unpoetised + +# unpolarizable (level 80) +A Z: unpolarizable / B: unpolarisable +A Z: unpolarizables / B: unpolarisables +A Z: unpolarizable's / B: unpolarisable's + +# unpolarized (level 80) +A Z: unpolarized / B: unpolarised +A Z: unpolarizedder / B: unpolarisedder +A Z: unpolarizeddest / B: unpolariseddest +A Z: unpolarizeds / B: unpolariseds +A Z: unpolarized's / B: unpolarised's + +# unpolymerized (level 95) +A Z: unpolymerized / B: unpolymerised +A Z: unpolymerizedder / B: unpolymerisedder +A Z: unpolymerizeddest / B: unpolymeriseddest +A Z: unpolymerizeds / B: unpolymeriseds +A Z: unpolymerized's / B: unpolymerised's + +# unpopularize (level 95) +A Z: unpopularize / B: unpopularise +A Z: unpopularizes / B: unpopularises + +# unpopularized (level 95) +A Z: unpopularized / B: unpopularised + +# unpracticed (level 60) +A Cv: unpracticed / B C: unpractised +A Cv: unpracticedder / B C: unpractisedder +A Cv: unpracticeddest / B C: unpractiseddest + +# unpressurized (level 70) +A Z: unpressurized / B: unpressurised + +# unprotestantize (level 80) +A Z: unprotestantize / B: unprotestantise +A Z: unprotestantized / B: unprotestantised +A Z: unprotestantizing / B: unprotestantising +A Z: unprotestantizes / B: unprotestantises + +# unpublicized (level 70) +A Z: unpublicized / B: unpublicised + +# unpulverize (level 95) +A Z: unpulverize / B: unpulverise +A Z: unpulverizes / B: unpulverises + +# unpulverized (level 95) +A Z: unpulverized / B: unpulverised +A Z: unpulverizedder / B: unpulverisedder +A Z: unpulverizeddest / B: unpulveriseddest + +# unquantized (level 80) +A Z: unquantized / B: unquantised + +# unradicalize (level 95) +A Z: unradicalize / B: unradicalise +A Z: unradicalizes / B: unradicalises + +# unrancored (level 95) +A: unrancored / B: unrancoured +A: unrancoredder / B: unrancouredder +A: unrancoreddest / B: unrancoureddest +A: unrancoreds / B: unrancoureds +A: unrancored's / B: unrancoured's + +# unrancorous (level 95) +A: unrancorous / B: unrancourous + +# unrationalized (level 95) +A Z: unrationalized / B: unrationalised + +# unrationalizing (level 95) +A Z: unrationalizing / B: unrationalising + +# unravel (level 35) +A: unraveled / B: unravelled +A: unraveling / B: unravelling + +# unraveler (level 80) +A: unraveler / B: unraveller +A: unravelers / B: unravellers +A: unraveler's / B: unraveller's + +# unrealizable (level 70) +A Z: unrealizable / B: unrealisable +A Z: unrealizables / B: unrealisables +A Z: unrealizable's / B: unrealisable's + +# unrealize (level 50) +A Z: unrealize / B: unrealise +A Z: unrealized / B: unrealised +A Z: unrealizing / B: unrealising +A Z: unrealizes / B: unrealises +A Z: unrealizings / B: unrealisings + +# unrecognizable (level 50) +A Z: unrecognizable / B: unrecognisable +A Z: unrecognizabler / B: unrecognisabler +A Z: unrecognizablest / B: unrecognisablest + +# unrecognizably (level 70) +A Z: unrecognizably / B: unrecognisably + +# unrecognized (level 35) +A Z: unrecognized / B: unrecognised + +# unrecognizing (level 80) +A Z: unrecognizing / B: unrecognising + +# unrecognizingly (level 95) +A Z: unrecognizingly / B: unrecognisingly + +# unreconnoitered (level 95) +A: unreconnoitered / B: unreconnoitred +A: unreconnoiteredder / B: unreconnoitredder +A: unreconnoitereddest / B: unreconnoitreddest +A: unreconnoitereds / B: unreconnoitreds +A: unreconnoitered's / B: unreconnoitred's + +# unregularized (level 95) +A Z: unregularized / B: unregularised + +# unreorganized (level 95) +A Z: unreorganized / B: unreorganised +A Z: unreorganizedder / B: unreorganisedder +A Z: unreorganizeddest / B: unreorganiseddest + +# unrevelationize (level 95) +A Z: unrevelationize / B: unrevelationise +A Z: unrevelationizes / B: unrevelationises + +# unrivaled (level 35) +A: unrivaled / B: unrivalled +A: unrivaledder / B: unrivalledder +A: unrivaleddest / B: unrivalleddest + +# unromanized (level 80) +A Z: unromanized / B: unromanised + +# unromanticized (level 80) +A Z: unromanticized / B: unromanticised +A Z: unromanticizedder / B: unromanticisedder +A Z: unromanticizeddest / B: unromanticiseddest +A Z: unromanticizeds / B: unromanticiseds +A Z: unromanticized's / B: unromanticised's + +# unroyalized (level 95) +A Z: unroyalized / B: unroyalised +A Z: unroyalizeds / B: unroyaliseds +A Z: unroyalized's / B: unroyalised's + +# unrumored (level 95) +A: unrumored / B: unrumoured +A: unrumoredder / B: unrumouredder +A: unrumoreddest / B: unrumoureddest + +# unsabered (level 95) +A: unsabered / B: unsabred +A: unsaberedder / B: unsabredder +A: unsabereddest / B: unsabreddest + +# unsatirizable (level 95) +A Z: unsatirizable / B: unsatirisable + +# unsatirize (level 95) +A Z: unsatirize / B: unsatirise +A Z: unsatirizes / B: unsatirises + +# unsatirized (level 95) +A Z: unsatirized / B: unsatirised +A Z: unsatirizedder / B: unsatirisedder +A Z: unsatirizeddest / B: unsatiriseddest + +# unsavored (level 95) +A: unsavored / B: unsavoured +A: unsavoredder / B: unsavouredder +A: unsavoreddest / B: unsavoureddest + +# unsavoredly (level 95) +A: unsavoredly / B: unsavouredly + +# unsavoredness (level 95) +A: unsavoredness / B: unsavouredness + +# unsavorily (level 70) +A: unsavorily / B: unsavourily +A: unsavorilier / B: unsavourilier +A: unsavorilies / B: unsavourilies +A: unsavoriliest / B: unsavouriliest + +# unsavoriness (level 70) +A: unsavoriness / B: unsavouriness +A: unsavorinesses / B: unsavourinesses +A: unsavoriness's / B: unsavouriness's + +# unsavory (level 35) +A Cv: unsavory / B C: unsavoury +A Cv: unsavorier / B C: unsavourier +A Cv: unsavories / B C: unsavouries +A Cv: unsavoriest / B C: unsavouriest +A Cv: unsavory's / B C: unsavoury's + +# unscandalize (level 95) +A Z: unscandalize / B: unscandalise +A Z: unscandalizes / B: unscandalises + +# unscandalized (level 95) +A Z: unscandalized / B: unscandalised +A Z: unscandalizedder / B: unscandalisedder +A Z: unscandalizeddest / B: unscandaliseddest + +# unscepter (level 95) +A: unscepter / B: unsceptre +A: unscepters / B: unsceptres +A: unscepter's / B: unsceptre's + +# unsceptered (level 80) +A: unsceptered / B: unsceptred +A: unscepteredder / B: unsceptredder +A: unsceptereddest / B: unsceptreddest + +# unschematized (level 95) +A Z: unschematized / B: unschematised +A Z: unschematizedder / B: unschematisedder +A Z: unschematizeddest / B: unschematiseddest +A Z: unschematizeds / B: unschematiseds +A Z: unschematized's / B: unschematised's + +# unscored (level 80) +A: unscored / B: unscoured + +# unscoring (level 95) +A: unscoring / B: unscouring + +# unscrutinized (level 80) +A Z: unscrutinized / B: unscrutinised +A Z: unscrutinizedder / B: unscrutinisedder +A Z: unscrutinizeddest / B: unscrutiniseddest + +# unscrutinizing (level 95) +A Z: unscrutinizing / B: unscrutinising +A Z: unscrutinizinger / B: unscrutinisinger +A Z: unscrutinizingest / B: unscrutinisingest + +# unscrutinizingly (level 95) +A Z: unscrutinizingly / B: unscrutinisingly +A Z: unscrutinizinglier / B: unscrutinisinglier +A Z: unscrutinizingliest / B: unscrutinisingliest + +# unsectarianize (level 95) +A Z: unsectarianize / B: unsectarianise +A Z: unsectarianizes / B: unsectarianises + +# unsectionalized (level 95) +A Z: unsectionalized / B: unsectionalised + +# unsecularize (level 95) +A Z: unsecularize / B: unsecularise +A Z: unsecularizes / B: unsecularises + +# unsecularized (level 95) +A Z: unsecularized / B: unsecularised +A Z: unsecularizedder / B: unsecularisedder +A Z: unsecularizeddest / B: unseculariseddest + +# unsensitize (level 80) +A Z: unsensitize / B: unsensitise +A Z: unsensitized / B: unsensitised +A Z: unsensitizing / B: unsensitising +A Z: unsensitizes / B: unsensitises + +# unsensualize (level 80) +A Z: unsensualize / B: unsensualise +A Z: unsensualized / B: unsensualised +A Z: unsensualizing / B: unsensualising +A Z: unsensualizes / B: unsensualises + +# unsentimentalize (level 95) +A Z: unsentimentalize / B: unsentimentalise +A Z: unsentimentalizes / B: unsentimentalises + +# unsentimentalized (level 95) +A Z: unsentimentalized / B: unsentimentalised + +# unsepulcher (level 95) +A: unsepulcher / B: unsepulchre +A: unsepulchers / B: unsepulchres + +# unsepulchered (level 80) +A: unsepulchered / B: unsepulchred + +# unserialized (level 95) +A Z: unserialized / B: unserialised + +# unshakable (level 50) +A Bv C: unshakable / Av B Cv: unshakeable + +# unshed (level 80) +A: unshed / B: unshoed + +# unsignalized (level 95) +A Z: unsignalized / B: unsignalised +A Z: unsignalizedder / B: unsignalisedder +A Z: unsignalizeddest / B: unsignaliseddest +A Z: unsignalizeds / B: unsignaliseds +A Z: unsignalized's / B: unsignalised's + +# unsiphon (level 95) +A: unsiphon / B: unsyphon +A: unsiphons / B: unsyphons +A: unsiphon's / B: unsyphon's + +# unsocialized (level 80) +A Z: unsocialized / B: unsocialised +A Z: unsocializedder / B: unsocialisedder +A Z: unsocializeddest / B: unsocialiseddest + +# unsocializing (level 95) +A Z: unsocializing / B: unsocialising + +# unsolemnize (level 95) +A Z: unsolemnize / B: unsolemnise +A Z: unsolemnizes / B: unsolemnises + +# unsolemnized (level 95) +A Z: unsolemnized / B: unsolemnised +A Z: unsolemnizedder / B: unsolemnisedder +A Z: unsolemnizeddest / B: unsolemniseddest + +# unsomber (level 95) +A: unsomber / B: unsombre + +# unsomberly (level 95) +A: unsomberly / B: unsombrely + +# unsomberness (level 95) +A: unsomberness / B: unsombreness +A: unsomberness's / B: unsombreness's + +# unspecialized (level 70) +A Z: unspecialized / B: unspecialised +A Z: unspecializedder / B: unspecialisedder +A Z: unspecializeddest / B: unspecialiseddest + +# unspecializing (level 95) +A Z: unspecializing / B: unspecialising +A Z: unspecializinger / B: unspecialisinger +A Z: unspecializingest / B: unspecialisingest + +# unspecterlike (level 95) +A: unspecterlike / B: unspectrelike +A: unspecterlikes / B: unspectrelikes +A: unspecterlike's / B: unspectrelike's + +# unspiritualize (level 80) +A Z: unspiritualize / B: unspiritualise +A Z: unspiritualized / B: unspiritualised +A Z: unspiritualizing / B: unspiritualising +A Z: unspiritualizes / B: unspiritualises + +# unsplendorous (level 95) +A: unsplendorous / B: unsplendourous + +# unsplendorously (level 95) +A: unsplendorously / B: unsplendourously + +# unspoiled (level 50) +_: unspoiled / _V: unspoilt + +# unstabilized (level 95) +A Z: unstabilized / B: unstabilised + +# unstabilizing (level 95) +A Z: unstabilizing / B: unstabilising + +# unstandardizable (level 95) +A Z: unstandardizable / B: unstandardisable + +# unstandardized (level 80) +A Z: unstandardized / B: unstandardised +A Z: unstandardizedder / B: unstandardisedder +A Z: unstandardizeddest / B: unstandardiseddest + +# unsterilized (level 70) +A Z: unsterilized / B: unsterilised + +# unstigmatized (level 80) +A Z: unstigmatized / B: unstigmatised +A Z: unstigmatizedder / B: unstigmatisedder +A Z: unstigmatizeddest / B: unstigmatiseddest +A Z: unstigmatizeds / B: unstigmatiseds +A Z: unstigmatized's / B: unstigmatised's + +# unstoicize (level 95) +A Z: unstoicize / B: unstoicise +A Z: unstoicizes / B: unstoicises + +# unsubsidized (level 70) +A Z: unsubsidized / B: unsubsidised + +# unsubstantialize (level 80) +A Z: unsubstantialize / B: unsubstantialise +A Z: unsubstantialized / B: unsubstantialised +A Z: unsubstantializing / B: unsubstantialising +A Z: unsubstantializes / B: unsubstantialises + +# unsuccorable (level 95) +A: unsuccorable / B: unsuccourable +A: unsuccorables / B: unsuccourables +A: unsuccorable's / B: unsuccourable's + +# unsuccored (level 80) +A: unsuccored / B: unsuccoured + +# unsulphurized (level 95) +A Z: unsulphurized / B: unsulphurised +A Z: unsulphurizeds / B: unsulphuriseds +A Z: unsulphurized's / B: unsulphurised's + +# unsummarizable (level 95) +A Z: unsummarizable / B: unsummarisable + +# unsummarized (level 95) +A Z: unsummarized / B: unsummarised +A Z: unsummarizedder / B: unsummarisedder +A Z: unsummarizeddest / B: unsummariseddest + +# unsupernaturalize (level 95) +A Z: unsupernaturalize / B: unsupernaturalise +A Z: unsupernaturalizes / B: unsupernaturalises + +# unsupernaturalized (level 95) +A Z: unsupernaturalized / B: unsupernaturalised + +# unsymbolized (level 95) +A Z: unsymbolized / B: unsymbolised +A Z: unsymbolizedder / B: unsymbolisedder +A Z: unsymbolizeddest / B: unsymboliseddest + +# unsymmetrized (level 80) +A Z: unsymmetrized / B: unsymmetrised +A Z: unsymmetrizeds / B: unsymmetriseds +A Z: unsymmetrized's / B: unsymmetrised's + +# unsympathizability (level 95) +A Z: unsympathizability / B: unsympathisability +A Z: unsympathizabilities / B: unsympathisabilities +A Z: unsympathizability's / B: unsympathisability's + +# unsympathizable (level 95) +A Z: unsympathizable / B: unsympathisable +A Z: unsympathizables / B: unsympathisables +A Z: unsympathizable's / B: unsympathisable's + +# unsympathized (level 95) +A Z: unsympathized / B: unsympathised +A Z: unsympathizedder / B: unsympathisedder +A Z: unsympathizeddest / B: unsympathiseddest + +# unsympathizing (level 80) +A Z: unsympathizing / B: unsympathising +A Z: unsympathizinger / B: unsympathisinger +A Z: unsympathizingest / B: unsympathisingest +A Z: unsympathizings / B: unsympathisings +A Z: unsympathizing's / B: unsympathising's + +# unsympathizingly (level 95) +A Z: unsympathizingly / B: unsympathisingly +A Z: unsympathizinglier / B: unsympathisinglier +A Z: unsympathizingliest / B: unsympathisingliest + +# unsynchronized (level 80) +A Z: unsynchronized / B: unsynchronised +A Z: unsynchronizedder / B: unsynchronisedder +A Z: unsynchronizeddest / B: unsynchroniseddest + +# unsynthesized (level 95) +A Z: unsynthesized / B: unsynthesised +A Z: unsynthesizedder / B: unsynthesisedder +A Z: unsynthesizeddest / B: unsynthesiseddest + +# unsystematized (level 80) +A Z: unsystematized / B: unsystematised +A Z: unsystematizedder / B: unsystematisedder +A Z: unsystematizeddest / B: unsystematiseddest + +# unsystematizedly (level 95) +A Z: unsystematizedly / B: unsystematisedly + +# unsystematizing (level 95) +A Z: unsystematizing / B: unsystematising +A Z: unsystematizinger / B: unsystematisinger +A Z: unsystematizingest / B: unsystematisingest + +# unsystemizable (level 95) +A Z: unsystemizable / B: unsystemisable +A Z: unsystemizables / B: unsystemisables +A Z: unsystemizable's / B: unsystemisable's + +# untantalized (level 95) +A Z: untantalized / B: untantalised +A Z: untantalizedder / B: untantalisedder +A Z: untantalizeddest / B: untantaliseddest + +# untantalizing (level 95) +A Z: untantalizing / B: untantalising +A Z: untantalizinger / B: untantalisinger +A Z: untantalizingest / B: untantalisingest +A Z: untantalizings / B: untantalisings +A Z: untantalizing's / B: untantalising's + +# untartarized (level 95) +A Z: untartarized / B: untartarised +A Z: untartarizeds / B: untartariseds +A Z: untartarized's / B: untartarised's + +# untechnicalize (level 95) +A Z: untechnicalize / B: untechnicalise +A Z: untechnicalizes / B: untechnicalises + +# untemporizing (level 95) +A Z: untemporizing / B: untemporising +A Z: untemporizings / B: untemporisings +A Z: untemporizing's / B: untemporising's + +# unterrorized (level 95) +A Z: unterrorized / B: unterrorised + +# untheorizable (level 95) +A Z: untheorizable / B: untheorisable +A Z: untheorizables / B: untheorisables +A Z: untheorizable's / B: untheorisable's + +# untrammeled (level 55) +A: untrammeled / B: untrammelled +A: untrammeledder / B: untrammelledder +A: untrammeleddest / B: untrammelleddest + +# untranquilized (level 95) +A Z: untranquilized / B: untranquilised + +# untranquillize (level 95) +A Z: untranquillize / B: untranquillise + +# untranquillized (level 95) +A Z: untranquillized / B: untranquillised + +# untyrannized (level 95) +A Z: untyrannized / B: untyrannised + +# unutilizable (level 95) +A Z: unutilizable / B: unutilisable +A Z: unutilizables / B: unutilisables +A Z: unutilizable's / B: unutilisable's + +# unutilized (level 70) +A Z: unutilized / B: unutilised + +# unvaporized (level 95) +A Z: unvaporized / B: unvaporised +A Z: unvaporizeds / B: unvaporiseds +A Z: unvaporized's / B: unvaporised's +## see note for "vaporize" + +# unvectorizable (level 99) +A Z: unvectorizable / B: unvectorisable + +# unverbalized (level 80) +A Z: unverbalized / B: unverbalised + +# unvictimized (level 95) +A Z: unvictimized / B: unvictimised + +# unvisualized (level 95) +A Z: unvisualized / B: unvisualised +A Z: unvisualizedder / B: unvisualisedder +A Z: unvisualizeddest / B: unvisualiseddest + +# unvitalized (level 95) +A Z: unvitalized / B: unvitalised +A Z: unvitalizeds / B: unvitaliseds +A Z: unvitalized's / B: unvitalised's + +# unvitriolized (level 95) +A Z: unvitriolized / B: unvitriolised +A Z: unvitriolizeds / B: unvitrioliseds +A Z: unvitriolized's / B: unvitriolised's + +# unvocalized (level 80) +A Z: unvocalized / B: unvocalised +A Z: unvocalizedder / B: unvocalisedder +A Z: unvocalizeddest / B: unvocaliseddest +A Z: unvocalizeds / B: unvocaliseds +A Z: unvocalized's / B: unvocalised's + +# unvolatilize (level 95) +A Z: unvolatilize / B: unvolatilise +A Z: unvolatilizes / B: unvolatilises + +# unvolatilized (level 95) +A Z: unvolatilized / B: unvolatilised +A Z: unvolatilizedder / B: unvolatilisedder +A Z: unvolatilizeddest / B: unvolatiliseddest + +# unvulcanized (level 80) +A Z: unvulcanized / B: unvulcanised +A Z: unvulcanizedder / B: unvulcanisedder +A Z: unvulcanizeddest / B: unvulcaniseddest +A Z: unvulcanizeds / B: unvulcaniseds +A Z: unvulcanized's / B: unvulcanised's + +# unvulgarize (level 80) +A Z: unvulgarize / B: unvulgarise +A Z: unvulgarized / B: unvulgarised +A Z: unvulgarizing / B: unvulgarising +A Z: unvulgarizes / B: unvulgarises + +# unwesternized (level 95) +A Z: unwesternized / B: unwesternised +A Z: unwesternizeds / B: unwesterniseds +A Z: unwesternized's / B: unwesternised's + +# unwomanize (level 95) +A Z: unwomanize / B: unwomanise +A Z: unwomanizes / B: unwomanises + +# unwomanized (level 95) +A Z: unwomanized / B: unwomanised + +# updraft (level 50) +A C: updraft / B Cv: updraught +A C: updrafts / B Cv: updraughts +A C: updraft's / B Cv: updraught's + +# upward (level 10) +_: upward | +_: upward / _v: upwards | + +# uralitization (level 80) +A Z: uralitization / B: uralitisation +A Z: uralitizations / B: uralitisations + +# uralitize (level 80) +A Z: uralitize / B: uralitise +A Z: uralitized / B: uralitised +A Z: uralitizing / B: uralitising +A Z: uralitizes / B: uralitises + +# uratemia (level 95) +A: uratemia / B: urataemia + +# urbanization (level 50) +A Z: urbanization / B: urbanisation +A Z: urbanizations / B: urbanisations +A Z: urbanization's / B: urbanisation's + +# urbanize (level 50) +A Z: urbanize / B: urbanise +A Z: urbanized / B: urbanised +A Z: urbanizing / B: urbanising +A Z: urbanizes / B: urbanises + +# uredema (level 95) +A: uredema / B: uroedema + +# uremia (level 60) +A C: uremia / B: uraemia +A C: uremias / B: uraemias +A C: uremia's / B: uraemia's + +# uremic (level 60) +A C: uremic / B: uraemic + +# urethrorrhea (level 95) +A: urethrorrhea / B: urethrorrhoea + +# uricemia (level 95) +A: uricemia / B: uricaemia + +# uricemic (level 95) +A: uricemic / B: uricaemic + +# urinemia (level 80) +A: urinemia / B: urinaemia + +# urinemic (level 80) +A: urinemic / B: urinaemic + +# urohematin (level 95) +A: urohematin / B: urohaematin + +# urophein (level 95) +A: urophein / B: urophaein + +# usability (level 60) +A B: usability / AV: useability +A B: usability's / AV: useability's + +# usable (level 20) +A B: usable / AV Bv: useable + +# utilitarianize (level 80) +A Z: utilitarianize / B: utilitarianise +A Z: utilitarianized / B: utilitarianised +A Z: utilitarianizing / B: utilitarianising +A Z: utilitarianizes / B: utilitarianises + +# utilizability (level 95) +A Z: utilizability / B: utilisability +A Z: utilizabilities / B: utilisabilities + +# utilizable (level 55) +A Z: utilizable / B: utilisable +A Z: utilizables / B: utilisables +A Z: utilizable's / B: utilisable's + +# utilization (level 35) +A Z: utilization / B: utilisation +A Z: utilizations / B: utilisations +A Z: utilization's / B: utilisation's + +# utilize (level 35) +A Z: utilize / B: utilise +A Z: utilized / B: utilised +A Z: utilizing / B: utilising +A Z: utilizes / B: utilises + +# utilizer (level 70) +A Z: utilizer / B: utiliser +A Z: utilizers / B: utilisers +A Z: utilizer's / B: utiliser's + +# Utopianize (level 80) +A Z: Utopianize / B: Utopianise +A Z: Utopianizes / B: Utopianises +A Z: Utopianize's / B: Utopianise's +A Z: utopianize / B: utopianise +A Z: utopianized / B: utopianised +A Z: utopianizing / B: utopianising +A Z: utopianizes / B: utopianises + +# utopianizer (level 80) +A Z: utopianizer / B: utopianiser +A Z: utopianizers / B: utopianisers +A Z: utopianizer's / B: utopianiser's + +# vaagmer (level 95) +A: vaagmer / B: vaagmaer + +# vaccinization (level 95) +A Z: vaccinization / B: vaccinisation +A Z: vaccinizations / B: vaccinisations +A Z: vaccinization's / B: vaccinisation's + +# vacuolization (level 80) +A Z: vacuolization / B: vacuolisation +A Z: vacuolizations / B: vacuolisations +A Z: vacuolization's / B: vacuolisation's + +# vacuumize (level 95) +A Z: vacuumize / B: vacuumise +A Z: vacuumized / B: vacuumised +A Z: vacuumizing / B: vacuumising +A Z: vacuumizes / B: vacuumises + +# vagabondize (level 80) +A Z: vagabondize / B: vagabondise +A Z: vagabondized / B: vagabondised +A Z: vagabondizing / B: vagabondising +A Z: vagabondizes / B: vagabondises + +# vagabondizer (level 95) +A Z: vagabondizer / B: vagabondiser +A Z: vagabondizers / B: vagabondisers + +# vaginule (level 80) +A: vaginule / B: vaginulae + +# vagrantize (level 95) +A Z: vagrantize / B: vagrantise +A Z: vagrantizes / B: vagrantises + +# valor (level 35) +A Cv DV: valor / B C D: valour +A Cv DV: valors / B C D: valours +A Cv DV: valor's / B C D: valour's + +# valorization (level 70) +A Z: valorization / B: valorisation +A Z: valorizations / B: valorisations +A Z: valorization's / B: valorisation's + +# valorize (level 70) +A Z: valorize / B: valorise +A Z: valorized / B: valorised +A Z: valorizing / B: valorising +A Z: valorizes / B: valorises + +# valorousness (level 80) +A: valorousness / B: valourousness + +# valvule (level 70) +A: valvule / B: valvulae + +# vampirize (level 80) +A Z: vampirize / B: vampirise +A Z: vampirized / B: vampirised +A Z: vampirizing / B: vampirising +A Z: vampirizes / B: vampirises + +# vandalization (level 80) +A Z: vandalization / B: vandalisation +A Z: vandalizations / B: vandalisations +A Z: vandalization's / B: vandalisation's + +# vandalize (level 35) +A Z: vandalize / B: vandalise +A Z: vandalized / B: vandalised +A Z: vandalizing / B: vandalising +A Z: vandalizes / B: vandalises + +# vapor (level 35) +A Cv DV: vapor / B C D: vapour +A Cv DV: vapored / B C D: vapoured +A Cv DV: vaporing / B C D: vapouring +A Cv DV: vapor's / B C D: vapour's +A Cv DV: vaporings / B C D: vapourings +A Cv DV: vaporing's / B C D: vapouring's +A Cv DV: vapors / B C D: vapours + +# vaporability (level 80) +A: vaporability / B: vapourability +A: vaporabilities / B: vapourabilities +A: vaporability's / B: vapourability's + +# vaporable (level 80) +A: vaporable / B: vapourable +A: vaporables / B: vapourables +A: vaporable's / B: vapourable's + +# vaporer (level 80) +A: vaporer / B: vapourer +A: vaporers / B: vapourers +A: vaporer's / B: vapourer's + +# vaporescent (level 95) +A: vaporescent / B: vapourescent + +# vaporific (level 70) +A: vaporific / B: vapourific + +# vaporimeter (level 70) +A: vaporimeter / B: vapourimeter +A: vaporimeter's / B: vapourimeter's + +# vaporingly (level 80) +A: vaporingly / B: vapouringly + +# vaporish (level 70) +A: vaporish / B: vapourish +A: vaporisher / B: vapourisher +A: vaporishest / B: vapourishest + +# vaporishness (level 80) +A: vaporishness / B: vapourishness +A: vaporishnesses / B: vapourishnesses +A: vaporishness's / B: vapourishness's + +# vaporizable (level 80) +A Z: vaporizable / B: vaporisable +A Z: vaporizabler / B: vaporisabler +A Z: vaporizables / B: vaporisables +A Z: vaporizablest / B: vaporisablest +A Z: vaporizable's / B: vaporisable's +## see note vaporize + +# vaporization (level 50) +A Z: vaporization / B: vaporisation +A Z: vaporizations / B: vaporisations +A Z: vaporization's / B: vaporisation's +## see note for "vaporize" + +# vaporize (level 35) +A Z: vaporize / B: vaporise +A Z: vaporized / B: vaporised +A Z: vaporizing / B: vaporising +A Z: vaporizes / B: vaporises +## "Vapor" is spelled "Vapour" unless the word is "vaporize". This +## seams odd to be, but I could not find any evidence that "vapourize" +## or "vapourise" is a legal word, although I could find some evidence +## it was used. Nevertheless since "vapourize/-ise" doesn't seam to +## be a valid word, this spelling was not included. + +# vaporizer (level 50) +A Z: vaporizer / B: vaporiser +A Z: vaporizers / B: vaporisers +A Z: vaporizer's / B: vaporiser's +## see note for "vaporize" + +# vaporless (level 95) +A: vaporless / B: vapourless + +# vaporlesses (level 99) +A: vaporlesses / B: vapourlesses + +# vaporlike (level 95) +A: vaporlike / B: vapourlike +A: vaporlikes / B: vapourlikes +A: vaporlike's / B: vapourlike's + +# vaporose (level 95) +A: vaporose / B: vapourose + +# vaporously (level 70) +A: vaporously / B: vapourously + +# vaporware (level 50) +A Cv: vaporware / B C: vapourware + +# vapory (level 60) +A: vapory / B: vapoury +A: vaporier / B: vapourier +A: vaporiest / B: vapouriest + +# varicolored (level 50) +A Cv: varicolored / B C: varicoloured +A Cv: varicoloredder / B C: varicolouredder +A Cv: varicoloreddest / B C: varicoloureddest +A Cv: varicoloreds / B C: varicoloureds +A Cv: varicolored's / B C: varicoloured's + +# varicolorous (level 95) +A: varicolorous / B: varicolourous + +# vascularization (level 80) +A Z: vascularization / B: vascularisation +A Z: vascularizations / B: vascularisations +A Z: vascularization's / B: vascularisation's + +# vascularize (level 80) +A Z: vascularize / B: vascularise +A Z: vascularized / B: vascularised +A Z: vascularizing / B: vascularising +A Z: vascularizes / B: vascularises + +# vasectomize (level 70) +A Z: vasectomize / B: vasectomise +A Z: vasectomized / B: vasectomised +A Z: vasectomizing / B: vasectomising + +# vassalization (level 99) +A Z: vassalization / B: vassalisation + +# vassalize (level 70) +A Z: vassalize / B: vassalise +A Z: vassalized / B: vassalised +A Z: vassalizing / B: vassalising +A Z: vassalizes / B: vassalises + +# Vaticanization (level 95) +A Z: Vaticanization / B: Vaticanisation +A Z: Vaticanizations / B: Vaticanisations +A Z: Vaticanization's / B: Vaticanisation's + +# Vaticanize (level 95) +A Z: Vaticanize / B: Vaticanise +A Z: Vaticanizes / B: Vaticanises +A Z: Vaticanize's / B: Vaticanise's + +# vavasor (level 80) +A: vavasor / B: vavasour +A: vavasors / B: vavasours + +# Ve (level 95) +A: Ve / B: Voe +A: Ve's / B: Voe's + +# vectorizable (level 99) +A Z: vectorizable / B: vectorisable + +# vectorization (level 70) +A Z: vectorization / B: vectorisation +A Z: vectorizations / B: vectorisations +A Z: vectorization's / B: vectorisation's + +# vectorize (level 70) +A Z: vectorize / B: vectorise +A Z: vectorized / B: vectorised +A Z: vectorizing / B: vectorising +A Z: vectorizes / B: vectorises + +# vectorizer (level 99) +A Z: vectorizer / B: vectoriser +A Z: vectorizered / B: vectorisered +A Z: vectorizering / B: vectorisering +A Z: vectorizers / B: vectorisers + +# veery (level 70) +A: veery / B: verey + +# vegetablize (level 95) +A Z: vegetablize / B: vegetablise +A Z: vegetablizes / B: vegetablises + +# velarization (level 80) +A Z: velarization / B: velarisation +A Z: velarizations / B: velarisations +A Z: velarization's / B: velarisation's + +# velarize (level 70) +A Z: velarize / B: velarise +A Z: velarized / B: velarised +A Z: velarizing / B: velarising +A Z: velarizes / B: velarises + +# veld (level 50) +A B: veld / AV Bv: veldt +A B: velds / AV Bv: veldts +A B: veld's / AV Bv: veldt's + +# venalization (level 95) +A Z: venalization / B: venalisation +A Z: venalizations / B: venalisations +A Z: venalization's / B: venalisation's + +# venalize (level 95) +A Z: venalize / B: venalise +A Z: venalizes / B: venalises + +# vendor (level 20) +A B: vendor / AV: vender +A B: vendors / AV: venders +A B: vendor's / AV: vender's + +# venomization (level 95) +A Z: venomization / B: venomisation +A Z: venomizations / B: venomisations +A Z: venomization's / B: venomisation's + +# venomize (level 95) +A Z: venomize / B: venomise +A Z: venomizes / B: venomises + +# venter (level 70) +A: venter / B: ventre +A: venters / B: ventres + +# ventriloquize (level 70) +A Z: ventriloquize / B: ventriloquise +A Z: ventriloquized / B: ventriloquised +A Z: ventriloquizing / B: ventriloquising +A Z: ventriloquizes / B: ventriloquises + +# venule (level 70) +A: venule / B: venulae + +# veranda (level 35) +A B Dv: veranda / Av Bv D: verandah +A B Dv: verandas / Av Bv D: verandahs +A B Dv: veranda's / Av Bv D: verandah's + +# verbalization (level 60) +A Z: verbalization / B: verbalisation +A Z: verbalizations / B: verbalisations +A Z: verbalization's / B: verbalisation's + +# verbalize (level 50) +A Z: verbalize / B: verbalise +A Z: verbalized / B: verbalised +A Z: verbalizing / B: verbalising +A Z: verbalizes / B: verbalises + +# verbalizer (level 70) +A Z: verbalizer / B: verbaliser +A Z: verbalizers / B: verbalisers +A Z: verbalizer's / B: verbaliser's + +# vermeil (level 80) +A: vermeiled / B: vermeilled +A: vermeiling / B: vermeilling + +# vermeiles (level 80) +A: vermeiles / B: vermeilles + +# vermilion (level 50) +_: vermilion / _V: vermillion +_: vermilion's / _V: vermillion's + +# vermilionize (level 95) +A Z: vermilionize / B: vermilionise +A Z: vermilionizes / B: vermilionises + +# vernacularization (level 80) +A Z: vernacularization / B: vernacularisation +A Z: vernacularizations / B: vernacularisations +A Z: vernacularization's / B: vernacularisation's + +# vernacularize (level 70) +A Z: vernacularize / B: vernacularise +A Z: vernacularized / B: vernacularised +A Z: vernacularizing / B: vernacularising +A Z: vernacularizes / B: vernacularises + +# vernalization (level 80) +A Z: vernalization / B: vernalisation +A Z: vernalizations / B: vernalisations +A Z: vernalization's / B: vernalisation's + +# vernalize (level 70) +A Z: vernalize / B: vernalise +A Z: vernalized / B: vernalised +A Z: vernalizing / B: vernalising +A Z: vernalizes / B: vernalises + +# versicolor (level 70) +A: versicolor / B: versicolour + +# versicolorate (level 95) +A: versicolorate / B: versicolourate + +# versicolored (level 80) +A: versicolored / B: versicoloured + +# versicolorous (level 95) +A: versicolorous / B: versicolourous + +# versionize (level 95) +A Z: versionize / B: versionise +A Z: versionizes / B: versionises + +# vesicule (level 80) +A: vesicule / B: vesiculae + +# vestryize (level 95) +A Z: vestryize / B: vestryise +A Z: vestryizes / B: vestryises + +# veter (level 70) +A: veter / B: vetoer +A: veter's / B: vetoer's + +# veteranize (level 95) +A Z: veteranize / B: veteranise +A Z: veteranizes / B: veteranises + +# vial (level 80) +A: vialed / B: vialled +A: vialing / B: vialling + +# victimizable (level 95) +A Z: victimizable / B: victimisable +A Z: victimizables / B: victimisables +A Z: victimizable's / B: victimisable's + +# victimization (level 40) +A Z: victimization / B: victimisation +A Z: victimizations / B: victimisations +A Z: victimization's / B: victimisation's + +# victimize (level 35) +A Z: victimize / B: victimise +A Z: victimized / B: victimised +A Z: victimizing / B: victimising +A Z: victimizes / B: victimises + +# victimizer (level 70) +A Z: victimizer / B: victimiser +A Z: victimizers / B: victimisers +A Z: victimizer's / B: victimiser's + +# Victorianize (level 80) +A Z: Victorianize / B: Victorianise +A Z: Victorianizes / B: Victorianises +A Z: Victorianize's / B: Victorianise's + +# victual (level 50) +A: victualed / B: victualled +A: victualing / B: victualling + +# victualage (level 70) +A: victualage / B: victuallage +A: victualages / B: victuallages +A: victualage's / B: victuallage's + +# victualer (level 70) +A: victualer / B: victualler +A: victualers / B: victuallers +A: victualer's / B: victualler's + +# victualess (level 80) +A: victualess / B: victualless + +# videodisk (level 50) +A B: videodisc / A-: videodisk +A B: videodisc's / A-: videodisk's +A B: videodiscs / A-: videodisks + +# vier (level 70) +A: vier / B: vire +A: viers / B: vires + +# Vietnamization (level 95) +A Z: Vietnamization / B: Vietnamisation +A Z: Vietnamization's / B: Vietnamisation's + +# Vietnamize (level 80) +A Z: Vietnamize / B: Vietnamise +A Z: Vietnamized / B: Vietnamised +A Z: Vietnamizing / B: Vietnamising +A Z: Vietnamizes / B: Vietnamises + +# vigor (level 35) +A Cv DV: vigor / B C D: vigour +A Cv DV: vigors / B C D: vigours +A Cv DV: vigor's / B C D: vigour's + +# vigorless (level 70) +A: vigorless / B: vigourless + +# villagization (level 80) +A Z: villagization / B: villagisation +A Z: villagizations / B: villagisations + +# viremia (level 80) +A: viremia / B: viraemia +A: viremias / B: viraemias + +# viremic (level 80) +A: viremic / B: viraemic + +# virilization (level 80) +A Z: virilization / B: virilisation +A Z: virilizations / B: virilisations + +# virilize (level 80) +A Z: virilized / B: virilised +A Z: virilizing / B: virilising + +# virtualize (level 95) +A Z: virtualize / B: virtualise +A Z: virtualizes / B: virtualises + +# virtuosi (level 35) +A B: virtuosi / Av Bv: virtuosos / A-: virtuosoes + +# visionize (level 95) +A Z: visionize / B: visionise +A Z: visionizes / B: visionises + +# visor (level 35) +A B C: visor / AV Bv: vizor +A B C: visors / AV Bv: vizors +A B C: visor's / AV Bv: vizor's + +# visualizable (level 95) +A Z: visualizable / B: visualisable + +# visualization (level 50) +A Z: visualization / B: visualisation +A Z: visualizations / B: visualisations +A Z: visualization's / B: visualisation's + +# visualize (level 35) +A Z: visualize / B: visualise +A Z: visualized / B: visualised +A Z: visualizing / B: visualising +A Z: visualizes / B: visualises + +# visualizer (level 60) +A Z: visualizer / B: visualiser +A Z: visualizers / B: visualisers +A Z: visualizer's / B: visualiser's + +# vitalization (level 60) +A Z: vitalization / B: vitalisation +A Z: vitalizations / B: vitalisations +A Z: vitalization's / B: vitalisation's + +# vitalize (level 50) +A Z: vitalize / B: vitalise +A Z: vitalized / B: vitalised +A Z: vitalizing / B: vitalising +A Z: vitalizes / B: vitalises +A Z: vitalizings / B: vitalisings +A Z: vitalizing's / B: vitalising's + +# vitalizer (level 70) +A Z: vitalizer / B: vitaliser +A Z: vitalizers / B: vitalisers +A Z: vitalizer's / B: vitaliser's + +# vitalizingly (level 95) +A Z: vitalizingly / B: vitalisingly + +# vitaminization (level 95) +A Z: vitaminization / B: vitaminisation + +# vitaminize (level 80) +A Z: vitaminize / B: vitaminise +A Z: vitaminized / B: vitaminised +A Z: vitaminizing / B: vitaminising +A Z: vitaminizes / B: vitaminises + +# vitriolizable (level 95) +A Z: vitriolizable / B: vitriolisable +A Z: vitriolizables / B: vitriolisables +A Z: vitriolizable's / B: vitriolisable's + +# vitriolization (level 80) +A Z: vitriolization / B: vitriolisation +A Z: vitriolizations / B: vitriolisations +A Z: vitriolization's / B: vitriolisation's + +# vitriolize (level 70) +A Z: vitriolize / B: vitriolise +A Z: vitriolized / B: vitriolised +A Z: vitriolizing / B: vitriolising +A Z: vitriolizes / B: vitriolises + +# vitriolizer (level 95) +A Z: vitriolizer / B: vitrioliser +A Z: vitriolizers / B: vitriolisers + +# vivandier (level 80) +A: vivandier / B: vivandire + +# viver (level 80) +A: viver / B: vivre +A: vivers / B: vivres + +# viverrine (level 80) +A: viverrine / B: viverrinae + +# vizard (level 70) +A Z: vizard / B: visard +A Z: vizards / B: visards + +# vizied (level 95) +A Z: vizied / B: visied + +# vizies (level 80) +A Z: vizies / B: visies + +# vocalization (level 50) +A Z: vocalization / B: vocalisation +A Z: vocalizations / B: vocalisations +A Z: vocalization's / B: vocalisation's + +# vocalize (level 50) +A Z: vocalize / B: vocalise +A Z: vocalized / B: vocalised +A Z: vocalizing / B: vocalising +A Z: vocalizes / B: vocalises + +# vocalizer (level 70) +A Z: vocalizer / B: vocaliser +A Z: vocalizers / B: vocalisers +A Z: vocalizer's / B: vocaliser's + +# vocationalization (level 95) +A Z: vocationalization / B: vocationalisation +A Z: vocationalizations / B: vocationalisations +A Z: vocationalization's / B: vocationalisation's + +# vocationalize (level 95) +A Z: vocationalize / B: vocationalise +A Z: vocationalizes / B: vocationalises + +# volatilizable (level 80) +A Z: volatilizable / B: volatilisable +A Z: volatilizabler / B: volatilisabler +A Z: volatilizables / B: volatilisables +A Z: volatilizablest / B: volatilisablest +A Z: volatilizable's / B: volatilisable's + +# volatilization (level 70) +A Z: volatilization / B: volatilisation +A Z: volatilizations / B: volatilisations +A Z: volatilization's / B: volatilisation's + +# volatilize (level 60) +A Z: volatilize / B: volatilise +A Z: volatilized / B: volatilised +A Z: volatilizing / B: volatilising +A Z: volatilizes / B: volatilises + +# volatilizer (level 80) +A Z: volatilizer / B: volatiliser +A Z: volatilizers / B: volatilisers +A Z: volatilizer's / B: volatiliser's + +# volcanization (level 80) +A Z: volcanization / B: volcanisation +A Z: volcanizations / B: volcanisations + +# volcanize (level 80) +A Z: volcanize / B: volcanise +A Z: volcanized / B: volcanised +A Z: volcanizing / B: volcanising +A Z: volcanizes / B: volcanises + +# voltize (level 95) +A Z: voltize / B: voltise +A Z: voltizes / B: voltises + +# vowelization (level 80) +A Z: vowelization / B: vowelisation +A Z: vowelizations / B: vowelisations +A Z: vowelization's / B: vowelisation's + +# vowelize (level 70) +A Z: vowelize / B: vowelise +A Z: vowelized / B: vowelised +A Z: vowelizing / B: vowelising +A Z: vowelizes / B: vowelises + +# vulcanizable (level 70) +A Z: vulcanizable / B: vulcanisable +A Z: vulcanizabler / B: vulcanisabler +A Z: vulcanizables / B: vulcanisables +A Z: vulcanizablest / B: vulcanisablest +A Z: vulcanizable's / B: vulcanisable's + +# vulcanizate (level 80) +A Z: vulcanizate / B: vulcanisate +A Z: vulcanizates / B: vulcanisates +A Z: vulcanizate's / B: vulcanisate's + +# vulcanization (level 50) +A Z: vulcanization / B: vulcanisation +A Z: vulcanizations / B: vulcanisations +A Z: vulcanization's / B: vulcanisation's + +# vulcanize (level 50) +A Z: vulcanize / B: vulcanise +A Z: vulcanized / B: vulcanised +A Z: vulcanizing / B: vulcanising +A Z: vulcanizes / B: vulcanises + +# vulcanizer (level 70) +A Z: vulcanizer / B: vulcaniser +A Z: vulcanizers / B: vulcanisers +A Z: vulcanizer's / B: vulcaniser's + +# vulgarization (level 50) +A Z: vulgarization / B: vulgarisation +A Z: vulgarizations / B: vulgarisations +A Z: vulgarization's / B: vulgarisation's + +# vulgarize (level 50) +A Z: vulgarize / B: vulgarise +A Z: vulgarized / B: vulgarised +A Z: vulgarizing / B: vulgarising +A Z: vulgarizes / B: vulgarises + +# vulgarizer (level 60) +A Z: vulgarizer / B: vulgariser +A Z: vulgarizers / B: vulgarisers +A Z: vulgarizer's / B: vulgariser's + +# wackes (level 50) +A: wackes / B: wackoes + +# wacky (level 40) +_: wacky / _V: whacky +_: wackier / _V: whackier +_: wackiest / _V: whackiest + +# Wagnerize (level 95) +A Z: Wagnerize / B: Wagnerise +A Z: Wagnerizes / B: Wagnerises +A Z: Wagnerize's / B: Wagnerise's + +# wagon (level 35) +A B C: wagon / Bv: waggon +A B C: wagoned / Bv: waggoned +A B C: wagoning / Bv: waggoning +A B C: wagons / Bv: waggons +A B C: wagon's / Bv: waggon's + +# wagoneer (level 95) +A B: wagoneer / Bv: waggoneer + +# wagoner (level 50) +A B C: wagoner / Bv: waggoner +A B C: wagoners / Bv: waggoners +A B C: wagoner's / Bv: waggoner's + +# wagonette (level 70) +A B C: wagonette / Bv: waggonette +A B C: wagonettes / Bv: waggonettes +A B C: wagonette's / Bv: waggonette's + +# wainscot (level 50) +A B Cv: wainscoted / Av Bv C: wainscotted +A B Cv: wainscoting / Av Bv C: wainscotting +A B Cv: wainscotings / Av Bv C: wainscottings +A B Cv: wainscoting's / Av Bv C: wainscotting's + +# wallah (level 55) +_: wallah / _-: walla +_: wallahs / _-: wallas + +# wantonize (level 95) +A Z: wantonize / B: wantonise +A Z: wantonized / B: wantonised +A Z: wantonizing / B: wantonising +A Z: wantonizes / B: wantonises + +# warer (level 95) +A: warer / B: warre + +# Warford (level 95) +A: Warford / B: Warfourd +A: Warford's / B: Warfourd's + +# warm-up (level 60) +_: warm-up / _v: warmup +_: warm-ups / _v: warmups +_: warm-up's / _v: warmup's + +# warrantize (level 80) +A Z: warrantize / B: warrantise + +# waterbed (level 40) +_: waterbed / _v: water_bed +_: waterbeds / _v: water_beds +_: waterbed's / _v: water_bed's + +# watercolor (level 35) +A Cv DV: watercolor / B C D: watercolour +A Cv DV: watercolored / B C D: watercoloured +A Cv DV: watercoloring / B C D: watercolouring +A Cv DV: watercolors / B C D: watercolours +A Cv DV: watercolor's / B C D: watercolour's + +# watercolorist (level 70) +A: watercolorist / B: watercolourist +A: watercolorists / B: watercolourists +A: watercolorist's / B: watercolourist's + +# weasel (level 35) +A C: weaseled / B: weaselled +A C: weaseling / B: weaselling + +# weatherize (level 50) +A Z: weatherize / B: weatherise +A Z: weatherized / B: weatherised +A Z: weatherizing / B: weatherising +A Z: weatherizes / B: weatherises + +# weepy (level 50) +_: weepy | :1 +_: weepie | :2 + +# weeviled (level 80) +A: weeviled / B: weevilled + +# weftwize (level 80) +A Z: weftwize / B: weftwise + +# weize (level 95) +A Z: weize / B: weise +A Z: weized / B: weised +A Z: weizing / B: weising +A Z: weizes / B: weises + +# welsh (level 40) +_: welsh / _V: welch +_: welshed / _V: welched +_: welshing / _V: welching +_: welshes / _V: welches + +# wer (level 95) +A: wer / B: waer + +# werewolf (level 35) +_: werewolf / _-: werwolf +_: werewolves / _-: werwolves +_: werewolf's / _-: werwolf's + +# westernization (level 55) +A Z: westernization / B: westernisation +A Z: westernizations / B: westernisations +A Z: westernization's / B: westernisation's + +# westernize (level 40) +A Z: westernize / B: westernise +A Z: westernized / B: westernised +A Z: westernizing / B: westernising +A Z: westernizes / B: westernises + +# whimsy (level 50) +_: whimsy / _V: whimsey +_: whimsys / _V: whimseys +_: whimsy's / _V: whimsey's + +# whir (level 35) +A Bv C: whir / AV B Cv: whirr +A Bv C: whirs / AV B Cv: whirrs +A Bv C: whir's / AV B Cv: whirr's + +# whiskey (level 20) +A Cv: whiskeys / Av B C: whiskies | drink +A Cv: whiskey / Av B C: whisky | drink +A Cv: whiskey's / Av B C: whisky's | drink +A B: whiskey | (-) code word +A B: whiskies | (-) code word +A B: whiskey's | (-) code word + +# Whitmanize (level 95) +A Z: Whitmanize / B: Whitmanise +A Z: Whitmanizes / B: Whitmanises +A Z: Whitmanize's / B: Whitmanise's + +# whiz (level 35) +A BV C: whiz / Av B Cv: whizz | :1 +A Av B BV C Cv: whizzes | :1 +A BV C: whiz's / Av B Cv: whizz's | :1 +A BV C: whiz / Av B Cv1: whizz / AV Bv Cv2: wiz | :2 +A BV C: whiz's / Av B Cv1: whizz's / AV Bv Cv2: wiz's | :2 +A Av B BV C Cv1: whizzes / AV Bv Cv2: wizzes | :2 +A B: wiz | wizard +A B: wizz | as in "gee whiz", Ox: informal, chiefly N. Amer. + +# whodunit (level 40) +_: whodunit / _V: whodunnit +_: whodunits / _V: whodunnits +_: whodunit's / _V: whodunnits's + +# wigeon (level 50) +_: wigeon / _v: widgeon +_: wigeon's / _v: widgeon's +_: wigeon / _v: widgeons / _v: wigeons / _v: widgeon | + +# willful (level 35) +A Cv: willful / Av B C: wilful +A Cv: willfuler / Av B C: wilfuler +A Cv: willfulest / Av B C: wilfulest + +# willfully (level 35) +A: willfully / B: wilfully +A: willfullier / B: wilfullier +A: willfulliest / B: wilfulliest + +# willfulness (level 50) +A: willfulness / Av B: wilfulness +A: willfulness's / Av B: wilfulness's + +# willy (level 55) +_: willy / _V: willie + +# winterization (level 70) +A Z: winterization / B: winterisation +A Z: winterizations / B: winterisations +A Z: winterization's / B: winterisation's + +# winterize (level 50) +A Z: winterize / B: winterise +A Z: winterized / B: winterised +A Z: winterizing / B: winterising +A Z: winterizes / B: winterises + +# wintry (level 35) +_: wintry / _V: wintery +_: wintrier / _V: winterier +_: wintriest / _V: winteriest + +# wisteria (level 50) +_: wisteria / _V: wistaria +_: wisterias / _V: wistarias +_: wisteria's / _V: wistaria's + +# wizen (level 70) +A Z: wizen / B: wisen + +# wolf (level 35) +A B: wolves / A-: wolfs | +A B: wolfs | + +# womanization (level 95) +A Z: womanization / B: womanisation +A Z: womanizations / B: womanisations +A Z: womanization's / B: womanisation's + +# womanize (level 50) +A Z: womanize / B: womanise +A Z: womanized / B: womanised +A Z: womanizing / B: womanising +A Z: womanizes / B: womanises + +# womanizer (level 50) +A Z: womanizer / B: womaniser +A Z: womanizers / B: womanisers +A Z: womanizer's / B: womaniser's + +# woning (level 80) +_: woning / _v: wonning | +_: wonings / _v: wonnings | +_: woning's / _v: wonning's | + +# woodcockize (level 95) +A Z: woodcockize / B: woodcockise +A Z: woodcockizes / B: woodcockises + +# woolen (level 35) +A Cv: woolen / B C: woollen +A Cv: woolenner / B C: woollenner +A Cv: woolennest / B C: woollennest +A Cv: woolens / B C: woollens +A Cv: woolen's / B C: woollen's + +# woolenization (level 95) +A: woolenization / B: woollenisation / Z: woollenization +A: woolenizations / B: woollenisations / Z: woollenizations +A: woolenization's / B: woollenisation's / Z: woollenization's + +# woolenize (level 95) +A: woolenize / B: woollenise / Z: woollenize +A: woolenizes / B: woollenises / Z: woollenizes + +# woolly (level 35) +_: woolly / _V: wooly | +_: woollier / _V: woolier | +_: woolliest / _V: wooliest | +_: woolly / _V: wooly / _V: woolie | +_: woollies / _V: woolies | +_: woolly's / _V: woolie's / _V: wooly's | + +# wornil (level 95) +A: wornil / B: wournil + +# worship (level 35) +A: worshiped / B: worshipped +A: worshiping / B: worshipping + +# worshiper (level 35) +A: worshiper / B: worshipper +A: worshipers / B: worshippers +A: worshiper's / B: worshipper's + +# yak (level 35) +_ _V: yak | :1 +_: yaks / _V: yak | :1 +_ _V: yak's | :1 +_: yak / _V: yack | :2 +_: yakked / _V: yacked | :2 +_: yakking / _V: yacking | :2 +_: yaks / _V: yacks | :2 +_: yak / _V: yack | :3 +_: yaks / _V: yacks | :3 +_: yak's / _V: yack's | :3 +_: yuck / _V: yuk | :4 +_: yuk / _v: yuck / _V: yak / _V: yock | :5 +_: yuks / _v: yucks / _V: yocks / _V: yaks | :5 +_: yuk's / _v: yuck's / _V: yock's / _V: yak's | :5 +_: yuk / _v: yuck | :6 +_: yukked / _v: yucked | :6 +_: yukking / _v: yucking | :6 +_: yuks / _v: yucks | :6 + +# yeshiva (level 50) +_ _v: yeshiva / _V: yeshivah +_: yeshivas / _v: yeshivot / _V: yeshivahs +_ _v: yeshiva's / _V: yeshivah's + +# yodel (level 35) +A Cv: yodeled / B C: yodelled +A Cv: yodeling / B C: yodelling + +# yodeler (level 50) +A Cv: yodeler / B C: yodeller +A Cv: yodelers / B C: yodellers +A Cv: yodeler's / B C: yodeller's + +# yogi (level 50) +_: yogi / _V: yogin +_: yogis / _V: yogins +_: yogi's / _V: yogin's + +# yogurt (level 35) +A B Cv Dv: yogurt / Bv Cv D: yoghurt / Bv DV: yoghourt / C: yogourt +A B Cv Dv: yogurt's / Bv Cv D: yoghurt's / Bv DV: yoghourt's / C: yogourt's +A B Cv Dv: yogurts / Bv Cv D: yoghurts / Bv DV: yoghourts / C: yogourts + +# zaffer (level 70) +A: zaffer / B: zaffre +A: zaffers / B: zaffres + +# zea (level 80) +A: zea / B: zoea +A: zeas / B: zoeas +A: zoea / B: zoaea +A: zoea / B: zooea +A: zoeas / B: zooeas +A: zoea's / B: zoaea's + +# zeroize (level 95) +A Z: zeroize / B: zeroise +A Z: zeroized / B: zeroised +A Z: zeroizing / B: zeroising +A Z: zeroizes / B: zeroises + +# zoeae (level 80) +A: zoeae / B: zooeae + +# zoeal (level 80) +A: zoeal / B: zooeal + +# zoecium (level 80) +A: zoecium / B: zooecium +A: zoecia / B: zooecia + +# zombie (level 35) +_: zombie / _V: zombi +_: zombies / _V: zombis +_: zombie's / _V: zombi's + +# zonesthesia (level 95) +A: zonesthesia / B: zonaesthesia + +# zonule (level 80) +A: zonule / B: zonulae + +# zooglea (level 70) +A: zooglea / B: zoogloea +A: zoogleas / B: zoogloeas + +# zoogleae (level 80) +A: zoogleae / B: zoogloeae + +# zoogleal (level 80) +A: zoogleal / B: zoogloeal + +# zygenid (level 80) +A: zygenid / B: zygaenid + +# Koran (level 35) +_: Koran / _.: Quran / _v: Qur'an +## Quran is more correct bases on a modern transliterated from Arabic +## to English, but both M-W and Oxford has Koran marked as the primary +## form. Technically "Qur'an" more correct but that doesn't seam to be +## used as much. + +# Koranic (level 60) +_: Koranic / _.: Quranic / _v: Qur'anic +## See note for Quran + +# virtualization (level 60) +A: virtualization / B: virtualisation + +# volcanism (level 60) +A B: volcanism / Av Bv: vulcanism +A B: volcanisms / Av Bv: vulcanisms +A B: volcanism's / Av Bv: vulcanism's + +# eukaryote (level 60) +A B: eukaryote / Av Bv: eucaryote +A B: eukaryotes / Av Bv: eucaryotes +A B: eukaryote's / Av Bv: eucaryote's +A B: eukaryotic / Av Bv: eucaryotic + +# prokaryote (level 60) +A B: prokaryote / Av Bv: procaryote +A B: prokaryotes / Av Bv: procaryotes +A B: prokaryote's / Av Bv: procaryote's +A B: prokaryotic / Av Bv: procaryotic + diff --git a/crates/varcon/codegen/Cargo.toml b/crates/varcon/codegen/Cargo.toml new file mode 100644 index 0000000..c7eeefb --- /dev/null +++ b/crates/varcon/codegen/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "varcon-codegen" +version = "1.0.2" +authors = ["Ed Page "] +description = "Source Code Spelling Correction" +repository = "https://github.com/crate-ci/typos" +readme = "../../../README.md" +categories = ["text-processing"] +license = "MIT" +edition = "2018" +publish = false + +[badges] +azure-devops = { project = "crate-ci", pipeline = "typos" } +codecov = { repository = "crate-ci/typos" } + +[dependencies] +codegenrs = "0.1" +structopt = "0.3" +varcon-parser = { version = "1.0", path = "../../varcon-parser" } diff --git a/crates/varcon/codegen/src/main.rs b/crates/varcon/codegen/src/main.rs new file mode 100644 index 0000000..43721d0 --- /dev/null +++ b/crates/varcon/codegen/src/main.rs @@ -0,0 +1,99 @@ +use structopt::StructOpt; + +const DICT: &[u8] = include_bytes!("../../assets/varcon.txt"); + +fn generate(file: &mut W) { + let dict = String::from_utf8_lossy(DICT); + let clusters = varcon_parser::ClusterIter::new(&dict); + + writeln!( + file, + "// This file is code-genned by {}", + env!("CARGO_PKG_NAME") + ) + .unwrap(); + writeln!(file, "#![allow(clippy::unreadable_literal)]",).unwrap(); + writeln!(file).unwrap(); + writeln!(file, "use crate::*;").unwrap(); + writeln!(file).unwrap(); + + writeln!(file, "pub static VARCON: &'static [Cluster] = &[").unwrap(); + for mut cluster in clusters { + cluster.infer(); + writeln!(file, "Cluster {{").unwrap(); + writeln!(file, " header: {:?},", cluster.header).unwrap(); + writeln!(file, " entries: &[").unwrap(); + for entry in &cluster.entries { + writeln!(file, " Entry {{").unwrap(); + writeln!(file, " variants: &[").unwrap(); + for variant in &entry.variants { + writeln!(file, " Variant {{").unwrap(); + writeln!(file, " word: {:?},", variant.word).unwrap(); + writeln!(file, " types: &[").unwrap(); + for t in &variant.types { + write!(file, " Type {{").unwrap(); + write!(file, "category: Category::{:?}, ", t.category).unwrap(); + if let Some(tag) = t.tag { + write!(file, "tag: Some(Tag::{:?}), ", tag).unwrap(); + } else { + write!(file, "tag: {:?}, ", t.tag).unwrap(); + } + write!(file, "num: {:?},", t.num).unwrap(); + writeln!(file, "}},").unwrap(); + } + writeln!(file, " ],").unwrap(); + writeln!(file, " }},").unwrap(); + } + writeln!(file, " ],").unwrap(); + if let Some(pos) = entry.pos { + write!(file, " pos: Some(Pos::{:?}),", pos).unwrap(); + } else { + write!(file, " pos: {:?},", entry.pos).unwrap(); + } + writeln!( + file, + " archaic: {:?}, note: {:?},", + entry.archaic, entry.note + ) + .unwrap(); + writeln!(file, " description: {:?},", entry.description).unwrap(); + writeln!(file, " comment: {:?},", entry.comment).unwrap(); + writeln!(file, " }},").unwrap(); + } + writeln!(file, " ],").unwrap(); + writeln!(file, " notes: &[").unwrap(); + for note in &cluster.notes { + writeln!(file, " {:?},", note).unwrap(); + } + writeln!(file, " ],").unwrap(); + writeln!(file, " }},").unwrap(); + } + writeln!(file, "];").unwrap(); +} + +#[derive(Debug, StructOpt)] +#[structopt(rename_all = "kebab-case")] +struct Options { + #[structopt(flatten)] + codegen: codegenrs::CodeGenArgs, + #[structopt(flatten)] + rustmft: codegenrs::RustfmtArgs, +} + +fn run() -> Result> { + let options = Options::from_args(); + + let mut content = vec![]; + generate(&mut content); + + let content = String::from_utf8(content)?; + let content = options.rustmft.reformat(&content)?; + options.codegen.write_str(&content)?; + + Ok(0) +} + +fn main() { + let code = run().unwrap(); + std::process::exit(code); +} diff --git a/crates/varcon/src/codegen.rs b/crates/varcon/src/codegen.rs new file mode 100644 index 0000000..1c8bc73 --- /dev/null +++ b/crates/varcon/src/codegen.rs @@ -0,0 +1,450944 @@ +// This file is code-genned by varcon-codegen +#![allow(clippy::unreadable_literal)] + +use crate::*; + +pub static VARCON: &'static [Cluster] = &[ +Cluster { + header: Some("abettor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abettor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "abetter", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "abettors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "abetters", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "abettor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "abetter\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abnormalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abnormalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abnormalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abnormalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abnormalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abnormalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abnormalizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abnormalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abnormalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abolitionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abolitionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abolitionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abolitionized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abolitionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abolitionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abolitionizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abolitionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "abolitionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("abridgment (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "abridgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "abridgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "abridgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "abridgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "abridgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "abridgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("absinthe (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "absinthe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "absinth", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "absinthe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "absinthes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "absinths", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "absinthes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "absinthe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "absinth\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "absinthe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("academize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "academize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "academise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("academized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "academized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "academised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("academizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "academizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "academising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acalephe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acalephe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "acalephae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("accessorize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "accessorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "accessorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accessorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "accessorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accessorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "accessorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accessorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "accessorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acclimatizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acclimatizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acclimatization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acclimatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acclimatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acclimatize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acclimatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acclimatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acclimatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acclimatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acclimatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acclimatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acclimatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "acclimatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("accorage (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "accorage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accourage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accoraged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accouraged", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accoraging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accouraging", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accorages", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accourages", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("accouter (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "accouter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutre", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accoutered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutred", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accoutering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutring", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accouters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutres", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("accouterment (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "accouterment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutrement", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accouterments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutrements", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "accouterment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "accoutrement\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("accursed (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "accursed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "accurst", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: Some("ODE: archaic, M-W: \"or\" but can find little evidence of use"), + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Acemetae (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Acemetae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Acoemetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Acemetae\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Acoemetae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Acemetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Acemetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Acoemetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Acemetic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Acoemetic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Acer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Acer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Acre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Acer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Acre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acetonemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acetonemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acetonaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acetonemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acetonemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acetonaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achenia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achenia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "achaenia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achenium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achenium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "achaenium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acheniums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "achaeniums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achenocarp (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achenocarp", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "achaenocarp", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achroiocythemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achroiocythemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "achroiocythaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achromatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achromatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "achromatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "achromatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("achromatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "achromatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "achromatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "achromatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "achromatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "achromatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acidemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acidemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acidaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acknowledgment (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acknowledgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acknowledgement", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acknowledgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acknowledgements", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "acknowledgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "acknowledgement\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acmesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acmesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "acmaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acroanesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acroanesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "acroanaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acroesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acroesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "acroaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("actualization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "actualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "actualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "actualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("actualize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "actualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "actualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "actualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "actualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "actualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("acuesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "acuesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "acuaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adapter (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adapter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "adaptor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adapters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "adaptors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adapter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "adaptor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("addable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "addable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "addible", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("addenda (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "addenda", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "addendums", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adjuster (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adjuster", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "adjustor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adjusters", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "adjustors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adjuster\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "adjustor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adulterize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adulterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adulterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adulterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adulterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adulterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adulterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adulterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adulterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("advene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "advene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "advenae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adverbialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adverbialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adverbialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adverbialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adverbialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adverbializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adverbialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adverbializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "adverbialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("advertise (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "advertise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertize", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advertised", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advertising", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertizing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advertises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertizes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("advertisement (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "advertisement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertizement", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advertisements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertizements", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advertisement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertizement\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("advertizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "advertizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "advertisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("adviser (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adviser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advisor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "advisers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advisors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adviser\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "advisor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "The oxford dictionary has this to say:", + "The spellings adviser and advisor are both correct. Adviser is more", + "common, but advisor is also widely used , especially in North", + "America. Adviser may be seen as less formal, while advisor often", + "suggests an official position.", + ], + }, +Cluster { + header: Some("adze (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "adze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "adz", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "adze\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "adz\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aedon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aedon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aaedon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aedon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aaedon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aeetes (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aeetes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aeaetes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aeetes\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aeaetes\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aegis (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aegis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "egis", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aegises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "egises", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aegis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "egis\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerialness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerialness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aaerialness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerialness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aaerialness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aeric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aeric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerie (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aery", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "eyry", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aeries", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "eyries", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aery\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "eyry\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerogram (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerogram", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aerogramme", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerograms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aerogrammes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerographer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerographer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areographer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerographic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerographic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areographic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerographical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerographical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areographical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerography (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerographies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areographies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerography\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areography\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerologic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerometer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aerometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areometers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aerometric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aerometric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areometric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "areometric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "araeometric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aerope (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aerope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aaerope", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aerope\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aaerope\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aesthete (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aesthete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "esthete", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aesthetes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "esthetes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aesthete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "esthete\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aestheticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aestheticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aestheticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aestheticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aestheticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aestheticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aestheticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aestheticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aestheticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("affeer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "affeer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "affere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Africanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Africanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Africanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Africanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Africanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Africanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Africanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Africanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Africanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Africanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Afrikanerization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Afrikanerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Afrikanerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Afrikanerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Afrikanerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Afrikanerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Afrikanerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Afrikanerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Afrikanerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Afrikanerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Afrikanerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Afrikanerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("afterwards (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "afterwards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "afterward", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agathodemon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agathodemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "agathodaemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ageism (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ageism", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "agism", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ager (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ager", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "agre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aggrandizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aggrandizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aggrandization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aggrandization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aggrandize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aggrandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aggrandizement (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aggrandizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aggrandizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aggrandizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aggrandizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aggrandiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aging (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ageing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ageings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aging\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ageing\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agnize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agnize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agnise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agnized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agnised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agnizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agnising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agnizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agnises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agonize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agonizedly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agonizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizedlies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisedlies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agonizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agonizingly (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agonizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agonizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agonisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agrarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agrarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agrarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("agrize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "agrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "agrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "agrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aguize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aguize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aguise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aguized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aguised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aguizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aguising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aguizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aguises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aiger (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aiger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aigre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("airfoil (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "airfoil", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aerofoil", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airfoils", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aerofoils", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airfoil\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aerofoil\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("airgel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "airgel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerogel", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("air_gun (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "air gun", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "airgun", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("air_letter (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "air letter", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "airletter", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("airplane (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "airplane", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeroplane", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airplanes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeroplanes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airplane\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeroplane\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("airstrike (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "airstrike", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "air strike", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airstrikes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "air strikes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "airstrike\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "air strike\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aker (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aker", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "akre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aktistete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aktistete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aktistetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aktistete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aktistetae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("albitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "albitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "albitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "albitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "albitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "albitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("albumenization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "albumenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albumenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albumenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("albumenize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "albumenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albumenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albumenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "albumenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "albuminizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("albumenizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "albumenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "albumeniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alchemize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alchemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alchemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alchemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alchemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alchemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alchemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alchemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alchemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Alcide (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Alcide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Alcidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Alcide\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Alcidae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Alcithoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Alcithoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Alcithoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Alcithoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Alcithoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alcoholizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alcoholizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alcoholization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alcoholization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alcoholize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alcoholize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alcoholizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alcoholises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aleucemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aleucemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aleucaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aleukemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aleukemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aleukaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aleus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aleus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aloeus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aleus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Aloeus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("algebraization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "algebraization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "algebraisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "algebraizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "algebraisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "algebraization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "algebraisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("algebraize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "algebraize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "algebraise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "algebraizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "algebraises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("algesthesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "algesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "algaesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alienize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alienize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alienise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alienizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alienises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("align (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "align", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "aline", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aligned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alined", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aligning", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alining", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aligns", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alignment (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alignment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alinement", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alignments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alinements", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alignment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "alinement\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alkalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alkalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alkalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alkaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("allegorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "allegorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("allegorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "allegorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("allegorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "allegorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "allegorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "allegoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alleluia (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alleluia", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "halleluiah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alleluias", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "halleluiahs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alleluia\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "halleluiah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alloxuremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alloxuremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "alloxuraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("almanac (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "almanac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "almanack", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "almanacs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "almanacks", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alphabetization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alphabetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alphabetize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alphabetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alphabetizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alphabetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alphabetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alphabetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alternize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "alternizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "alternises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("althea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "althea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "althaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "altheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "althaeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "althea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "althaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("althein (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "althein", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "althaein", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("although (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "although", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "altho", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aluminization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aluminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aluminize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aluminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aluminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aluminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aluminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aluminum (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aluminum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aluminums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminiums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aluminum\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aluminium\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alumni (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alumni", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "alumnuses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("alveole (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "alveole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "alveolae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amalgamatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amalgamatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amalgamatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amalgamization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amalgamization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amalgamizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amalgamization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amalgamize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amalgamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amalgamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amalgamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Amalthea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Amalthea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Amalthaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Amalthea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Amalthaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ambiance (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ambiance", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ambience", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ambiances", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ambiences", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ambiance\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ambience\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ambicolorate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ambicolorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ambicolourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ambicoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ambicoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ambicolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ambilevous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ambilevous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ambilaevous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ameban (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ameban", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoeban", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebiasis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebiasis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebiasis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amebiases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebiases", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebicidal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebicidal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebicidal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebicide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebicide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebicide", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebiform (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebiform", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebiform", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebiosis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebiosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebiosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebocyte (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebocyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebocyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amebocytes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebocytes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amebocyte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebocyte\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ameboidism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ameboidism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoeboidism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ameboidism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoeboidism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amebula (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amebula", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amoebula", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amenorrhea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amenorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amenorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amenorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amenorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amenorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amenorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amenorrheal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amenorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amenorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amenorrheic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amenorrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amenorrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Americanization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Americanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "americanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "americanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Americanize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Americanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "americanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "americanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Americanizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Americanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Americanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Americaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amid (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "amidst", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amidst", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("literary variant"), + comment: None, + }, + ], + notes: &[ + "amidst literary variant according to oxford dictionaries", + ], + }, +Cluster { + header: Some("ammocete (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ammocete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ammocoete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ammocetes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ammocoetes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ammocete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ammocoete\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ammoniemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ammoniemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ammoniaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amoeba (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoeba", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ameba", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amoebas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amoebae", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amebas", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amebae", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amoeba\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ameba\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "If ameba not variant than: A2: amebas / Av2: amebae", + ], + }, +Cluster { + header: Some("amoebic (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoebic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amebic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amoeboid (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoeboid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ameboid", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amok (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amok", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "amuck", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amoks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "amucks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amok\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "amuck\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("among (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "among", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "amongst", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amoralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amoret (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoret", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amouret", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amorism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amorism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amorisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amorism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amorist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amorists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amoristic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amoristic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amouristic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amoristics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amouristics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amorphization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amorphization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amorphisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amorphize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amorphize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amorphise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amortizable (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amortizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amortization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amortization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amortize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amortize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amortizement (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amortizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amortizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "amortisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amphigean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amphigean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amphigaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amphitheater (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amphitheater", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amphitheatre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amphitheaters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amphitheatres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "amphitheater\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "amphitheatre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ampule (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ampule", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ampoule", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ampul", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ampules", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ampoules", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ampuls", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ampule\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ampoule\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ampul\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amygdale (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amygdale", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amygdalae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("amyxorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "amyxorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "amyxorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anabaptize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anabaptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anabaptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anabaptized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anabaptised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anabaptizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anabaptising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anabaptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anabaptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anagrammatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anagrammatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anagrammatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anagrammatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anagrammatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anagrammatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anagrammatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anagrammatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anagrammatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analog (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "analog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("analogous"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "analog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("analogous"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "analogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("analogous"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analog", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "analogue", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("vs. digital"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analog\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "analogue\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("vs. digital"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "analogues", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("vs. digital"), + comment: None, + }, + ], + notes: &[ + "Oxford thinks the US spelling of analogue is always analog, but M-W", + "gives analogue as the correct spelling when relating to analogous,", + "and it doesn\'t even offer analog as a variant.", + "Macquarie prefers analog to analogue in the sense \"vs digital\".", + ], + }, +Cluster { + header: Some("analogize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analytic (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analytic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("linguistics"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analytical", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "analytic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analytically (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analytically", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "analyticalally", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyticiti (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyticiti", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "analyticaliti", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyticitis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "analyticalitis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyticity (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyticity", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "analyticality", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyzability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyzability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyzable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyzation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyzation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyze (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [analysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("analyzer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "analyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "analyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "analyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anapestically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anapestically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anapaestically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anapneic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anapneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anapnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anarchize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anarchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anarchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anarchized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anarchised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anarchizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anarchising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anarchizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anarchises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anathematization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anathematization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anathematize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anathematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anathematizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anathematizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anathematizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anathematiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anatomizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anatomizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anatomization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anatomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anatomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anatomize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anatomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anatomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anatomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anatomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anatomizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anatomizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anatomizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anatomiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Anchinoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Anchinoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Anchinoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Anchinoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Anchinoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ancille (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ancille", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ancillae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anematosis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anematosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaematosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anemia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anemic (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anemicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anemicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anemics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anemically (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anemically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaemically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aneretic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aneretic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaeretic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anoesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthesia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthesiant (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthesiant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthesiologist (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthesiologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesiologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesiologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthesiology (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthesiology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesiologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthesiology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesiology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetic (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anestheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaestheticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anestheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaestheticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetist (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetisation", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetisation", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetisation", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetize", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetise", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetized", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetised", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetizing", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetising", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaesthetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetizes", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetises", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthetizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetizer", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetiser", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anesthetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthetizers", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anesthetisers", + types: &[ + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anesthyl (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anesthyl", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anaesthyl", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anestri (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anestri", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestri", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anestrous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anestrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anestrum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anestrum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestrum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anestra", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestra", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anestrus (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anestrus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestrus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anestruses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestruses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anestrus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoestrus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anetiological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anetiological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anaetiological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aneurysm (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aneurysm", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aneurism", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aneurysms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aneurisms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aneurysm\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aneurism\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("angelicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "angelicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angelicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "angelicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angelicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("angelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "angelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "angelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Anglicanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Anglicanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Anglicanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Anglicanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Anglicanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Anglicanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Anglicanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anglicization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anglicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anglicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anglicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anglicize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anglicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anglicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anglicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anglicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anglicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("angrecum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "angrecum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "angraecum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("angularization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "angularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "angularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "angularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("angularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "angularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "angularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "angularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhematopoiesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhematopoiesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhaematopoiesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anhematopoiesis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhaematopoiesis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhematosis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhematosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhaematosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhemolytic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhemolytic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhaemolytic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhydremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhydremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhydraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhydremic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhydremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anhydraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhydridization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhydridization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anhydridisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anhydridizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anhydridisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anhydridization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anhydridisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anhydridize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anhydridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anhydridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anhydridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anhydridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("animalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "animalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "animalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "animalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("animalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "animalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "animalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "animalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "animalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("animized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "animized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "animised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("annalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "annalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("annualization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "annualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("annualize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "annualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "annualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "annualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anodization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anodization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anodisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anodize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anonymize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anonymize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anonymise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anonymized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anonymised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anonymizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anonymising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anonymizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anonymises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Anora (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Anora", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Anoura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Anora\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Anoura\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anoxemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anoxemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoxaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anoxemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoxaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anoxemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anoxemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "anoxaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anserine (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anserine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anserinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antagonizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antagonizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antagonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antagonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antagonize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antagonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antagonizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antagonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antagonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antagonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antenna (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antennae", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "antennas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insect"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antennas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "antennae", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("TV"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthecological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthecological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anthoecological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthecologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthecologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anthoecologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthecology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthecology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anthoecology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthologization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthologize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthracemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthracemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anthracaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthracitization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthracitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthracitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthracitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthracitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthracitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthracitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthropomorphization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthropomorphization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthropomorphizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthropomorphization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anthropomorphize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anthropomorphize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthropomorphized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthropomorphizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anthropomorphizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anthropomorphises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anticatalyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anticatalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anticatalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anticatalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anticatalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anticatalyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anticatalyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anticentralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anticentralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anticentralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anticentralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anticentralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anticentralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anticentralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "anticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antiepicenter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antiepicenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antiepicentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antiepicenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antiepicentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antiepicenter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antiepicentre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antifertilizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antifertilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antifertiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antifertilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antifertilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antifertilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antifertiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antilabor (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antilabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antilabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antilabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antilabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antilabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antilabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antilemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antilemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antiloemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antimedieval (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antimedieval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaeval", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antimedievalism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antimedievalism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaevalism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antimedievalism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaevalism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antimedievalist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antimedievalist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaevalist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antimedievalist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaevalist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antimedievally (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antimedievally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antimediaevally", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antioxidizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antioxidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antioxidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antioxidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antioxidizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antioxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antioxidizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antioxidizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antioxidising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antipathize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antipathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antipathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antipathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antipathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antiquarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antiquarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antiquarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antiquarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antiquarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antirumor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antirumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antirumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antirumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antirumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antirumor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "antirumour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antisensitize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antisensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antisensitizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antisensitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisensitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisensitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisensitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisensitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisensitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antisepticize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antisepticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisepticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisepticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisepticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisepticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisepticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisepticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antisepticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antiseptize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antiseptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antiseptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antiseptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antiseptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antisiphon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antisiphon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antisyphon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisiphons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antisyphons", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antisiphon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "antisyphon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("antithesize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "antithesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antithesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "antithesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "antithesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("anvil (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "anviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anvilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "anviling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "anvilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apesthetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apheresis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apheresis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aphaeresis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphereses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aphaereses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apheresis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aphaeresis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apheretic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apheretic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aphaeretic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aphetize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aphetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aphorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aphorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aphorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aphorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aphorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aphoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apnea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "apnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apneas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "apnoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apnea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "apnoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apneal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apneal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "apnoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apneic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "apnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apocenter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apocenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apocentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apogeic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apogeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apogaeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apologize (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apologizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apologizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apologiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apophthegmatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apophthegmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apophthegmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apophthegmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apophthegmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apophthegmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apophthegmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apophthegmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apophthegmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aporrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aporrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aporrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apostatization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apostatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apostatize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apostatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apostolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apostolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apostrophize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apostrophize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostrophise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostrophized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostrophised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostrophizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostrophising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apostrophizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apostrophises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apothegmatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apothegmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apothegmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apothegmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apothegmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apothegmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apothegmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apothegmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apothegmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apotheosize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apotheosize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apotheosise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apotheosized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apotheosised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apotheosizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apotheosising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apotheosizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apotheosises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("appall (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appall", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "appal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appalls", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "appals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apparel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appareled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apparelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appareling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "apparelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("appendix (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appendices", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "appendixes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("book"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appendixes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "appendices", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("organ"), + comment: None, + }, + ], + notes: &[ + "A few sources say the usage depends on context. M-w says appendixes", + "is the preferred form and does not distinguish based on context, Ox", + "(all versions) say appendices is the preferred form.", + ], + }, +Cluster { + header: Some("appetize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("appetizement (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appetizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("appetizer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "appetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("appetizingly (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "appetizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appetisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apprizal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apprizal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apprisal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apprizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apprizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "appriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "apprizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apprisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("apprizings (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "apprizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "apprisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aquaculture (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aquaculture", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aquiculture", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aquaculture\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aquiculture\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arabianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arabianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arabicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arabicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arabization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arabization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arabize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arabize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arabizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arabises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arabizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arabises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aramean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aramean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Aramaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arameans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Aramaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arbalester (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arbalester", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arbalestre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arbor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "arbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arbors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "arbours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arbores", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "arboures", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arbor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "arbour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arbored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arborization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arborization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arborizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arborization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arborize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arborize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arborized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arborizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arborizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arborises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archaeologically (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaeologically", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologically", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archaeologist (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaeologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaeologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologists", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaeologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologist\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archaeology (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaeology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeology", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaeologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaeology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeology\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archaize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archaizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archaizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "archaiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arche (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arche", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "archae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeoastronomy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeoastronomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeoastronomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archeoastronomies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeoastronomies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeocyte (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeocyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeocyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archeocyte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeocyte\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeolithic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeolithic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeolithic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeologian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeologian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeologian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeologic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaeologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeologic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeological (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archaeological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "archeological", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeometry (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeometry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeometry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archeometries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeometries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Archeozic (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Archeozic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Archaeozic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Archeozoic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Archeozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Archaeozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archeozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archetypally (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archetypally", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "archetypically", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("archeus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "archeus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaeus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "archei", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "archaei", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arcticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arcticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arcticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arcticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arcticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arctogea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arctogea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arctogea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arctogean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arctogean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arctogean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arctogeic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arctogeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arctogeic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arctogaeic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ardor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ardor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "ardour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ardors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "ardours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ardor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "ardour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arenicolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arenicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "arenicolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("areole (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "areole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "areolae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("areometrical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "areometrical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "araeometrical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("areostyle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "areostyle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "araeostyle", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "areostyles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "araeostyles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("areosystyle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "areosystyle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "araeosystyle", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arianizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Arianising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arimathea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arimathea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arimathaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arimathea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arimathaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arimathean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arimathean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arimathaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arimathean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Arimathaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ariste (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ariste", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aristae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arithmetization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arithmetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arithmetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arithmetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arithmetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arithmetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arithmetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arithmetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arithmetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arithmetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armorbearer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armorbearer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourbearer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armorbearer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourbearer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armorer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armoried (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armoried", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armouried", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armorless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("armory (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "armory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armoury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "armories", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armouries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: Some("Ox claims \"armories\" is the British plural but that has got to be a mistake"), + }, + Entry { + variants: &[ + Variant { + word: "armory\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "armoury\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aromatite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aromatite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatitae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aromatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aromatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aromatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aromatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aromatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aromatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aromatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aromatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aromatizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aromatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aromatizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aromatiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arsenicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arsenicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arsenicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arsenicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arsenicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Arsinoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Arsinoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Arsinoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Arsinoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Arsinoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arterialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arterialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arterializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arterialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arterialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arterialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arterialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arterializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arterializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "arterialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arthrempyesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arthrempyesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arthroempyesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("artifact (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "artifact", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "artefact", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "artifact\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "artefact\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "artifacts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "artefacts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("artificialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "artificialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "artificialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "artificialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "artificialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "artificializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "artificialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "artificializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "artificialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aryanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aryanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Aryanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Aryanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aryanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aryanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aryanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aryanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Aryanizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Aryanising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("arytenoid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "arytenoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arytaenoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "arytenoids", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arytaenoids", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asafetida (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asafetida", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asafoetida", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asafetidas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asafoetidas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asafetida\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asafoetida\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ascendance (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ascendance", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendence", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ascendance\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendence\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ascendancy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ascendancy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendency", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ascendancy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendency\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ascendant (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ascendant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendent", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ascendants", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendents", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ascendant\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ascendent\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Asclepiade (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Asclepiade", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Asclepiadae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asclepiade\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Asclepiadae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Asel (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Asel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Asael", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Asael\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asepticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asepticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asepticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asepticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asepticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asepticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asepticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asepticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asepticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asexualization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asexualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asexualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asexualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asexualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asexualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asexualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asexualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asexualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asexualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asexualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asexualizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asexualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asexualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Asiaticization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Asiaticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asiaticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asiaticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Asiaticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Asiaticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asiaticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asiaticize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Asiaticise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Asmonean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Asmonean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Asmonaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Asmonean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Asmonaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aspheterize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aspheterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aspheterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aspheterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aspheterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aspheterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aspheterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aspheterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "aspheterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ass (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ass", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ass\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ass", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ass\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arse\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("assafetida (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "assafetida", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "assafoetida", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "assafetidas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "assafoetidas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asshole (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asshole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arsehole", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "assholes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arseholes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asshole\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "arsehole\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Assidean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Assidean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Assidaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Assidean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Assidaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Assyrianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Assyrianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Assyrianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Assyrianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Assyrianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Assyrianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Assyrianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Astera (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Astera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Astrea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Astera\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Astrea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Astrea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Astraea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Astrea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Astraea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("astigmatizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "astigmatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astigmatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "astigmatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astigmatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "astigmatizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astigmatiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("astrean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "astrean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "astraean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("astronomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "astronomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astronomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "astronomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astronomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "astronomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astronomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "astronomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "astronomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("asynchronize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "asynchronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asynchronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asynchronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asynchronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asynchronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asynchronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "asynchronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "asynchronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atheize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atheize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atheise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atheized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atheised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atheizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atheising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atheizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atheises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("athetize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "athetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "athetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "athetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "athetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "athetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "athetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "athetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "athetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atmolyze (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atmolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atmolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atmolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atmolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atmolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atmolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atmolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atmolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atomizability (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atomizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atomizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atomizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atomization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atomize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atomizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atomizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atomizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atomiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("atroceruleus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "atroceruleus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "atrocoeruleus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("attemper (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "attemper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "attempre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Atticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Atticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Atticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Atticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Atticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Atticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Atticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Atticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Atticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "atticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "atticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("attitudinization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "attitudinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("attitudinize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "attitudinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("attitudinizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "attitudinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudiniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudinisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "attitudinizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "attitudiniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aunter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aunter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "auntre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("auntie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "auntie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "aunty", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aunties", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "auntie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "aunty\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aureole (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aureole", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aureola", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aureole\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "aureola\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Australianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Australianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Australianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Australianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Australianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Australianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Australianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Australopithecine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Australopithecine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Australopithecinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Australopithecine\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Australopithecinae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Austrianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Austrianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Austrianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Austrianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Austrianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Austrianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Austrianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autecious (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("auteciously (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "auteciously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoeciously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("auteciousness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "auteciousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoeciousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "auteciousness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoeciousness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autecism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autecism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoecism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autecisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoecisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autecism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoecism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autecy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autecy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autoecy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("authorizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "authorizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("authorization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "authorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("authorize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "authorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("authorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "authorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "authorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "authoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autocatalyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autocatalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autocatalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autocatalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autocatalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autocatalyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autocatalysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autocatalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autocatalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autodialer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autodialer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autodialler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autoimmunization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autoimmunization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autoimmunisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autoionization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autoionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autoionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autoionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autoionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autolyzate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autolyzate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolysate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autolyzates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolysates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autolyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("automatization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "automatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "automatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "automatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("automatize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "automatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "automatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "automatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "automatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "automatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Autonoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Autonoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Autonoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Autonoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Autonoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autotomize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autotomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autotomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autotomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autotomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autotomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "autotomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("autotoxemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "autotoxemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autotoxaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autotoxemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autotoxaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "autotoxemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "autotoxaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("avianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "avianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("avizandum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "avizandum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avisandum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avizandums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avisandums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("avize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "avize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "avizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "avises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("awestruck (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "awestruck", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "awestricken", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("AWOL (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "AWOL", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "awol", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ax (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ax", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "axe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ax\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "axe\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("axiomatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "axiomatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "axiomatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "axiomatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("axiomatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "axiomatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "axiomatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "axiomatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "axiomatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "axiomatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("aye (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aye", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ay", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aye\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ay\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("azotemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "azotemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "azotaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("azotization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "azotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "azotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("azotize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "azotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "azotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "azotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "azotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "azotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "azotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "azotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "azotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("azotorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "azotorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "azotorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Babelization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Babelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Babelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Babelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babelize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Babelized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Babelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babelized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Babelizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Babelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babelizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babelising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Babylonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Babylonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babylonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babylonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babylonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Babylonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Babylonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bachelorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bachelorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bachelorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bachelorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bachelorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacillemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacillemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bacillaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacillemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bacillaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacilli (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacilli", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bacilluses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("backpedal (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "backpedaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "backpedalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "backpedaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "backpedalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("backward (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "backward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "backwards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "backward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baconize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacteremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacteremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bacteraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacteremias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bacteraemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacteremia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bacteraemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacteria (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacteria", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bacterias", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacteriemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacteriemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bacteriaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bacterize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bacterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bacterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bacterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bacterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bacterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bacterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baddie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baddie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "baddy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baddie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "baddy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Baer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Baer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Bare", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Baer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Bare\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("balk (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "balk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "baulk", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balk\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "baulk\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "baulked", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "baulking", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "baulks", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Balkanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Balkanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Balkanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Balkanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Balkanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Balkanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Balkanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Balkanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Balkanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Balkanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balkanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balkanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("balladize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "balladize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balladise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balladized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balladised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balladizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balladising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balladizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balladises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baloney (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baloney", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boloney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baloney\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boloney\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("balsamize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "balsamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balsamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "balsamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "balsamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("banalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "banalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("banalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "banalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "banalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bandanna (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bandanna", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bandana", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bandannas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bandanas", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bandanna\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bandana\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bandoleer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bandoleer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bandolier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bandoleers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bandoliers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bandoleer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bandolier\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("banister (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "banister", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bannister", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banisters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bannisters", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banister\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bannister\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("banshee (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "banshee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "banshie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banshees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "banshies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "banshee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "banshie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bantamize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bantamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bantamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bantamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bantamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baptistery (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baptistery", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "baptistry", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptisteries", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "baptistries", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptistery\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "baptistry\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baptizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baptizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baptize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baptizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baptizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baptizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baptizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baptizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baptiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barbarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barbarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barbarization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barbarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barbarize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barbarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barbecue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barbecue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbeque", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbecued", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbequed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbecuing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbequing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbecues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbeques", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barbecue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "barbeque\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barcarole (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barcarole", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "barcarolle", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barcaroles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "barcarolles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barcarole\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "barcarolle\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bark (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bark", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bark\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bark", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barque", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("ship"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barques", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("ship"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bark\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barque\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("ship"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baronetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baronetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baronetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baronetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baronetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baronetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baronetizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baronetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baronetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("baronize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "baronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "baronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "baronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barrel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barreled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barrelled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "barreling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barrelling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bartizan (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bartizan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bartisan", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bartizans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bartisans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bartizaned (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bartizaned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bartisaned", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("barycenter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "barycenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "barycentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bastardization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bastardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bastardize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bastardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bastardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bastinade (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bastinaded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bastinadoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bastinades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bastinadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bathyscaphe (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bathyscaphe", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bathyscaph", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bathyscaphes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bathyscaphs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bathyscaphe\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bathyscaph\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("battleaxe (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "battleaxe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "battleax", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "battleaxe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "battleax\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "battleaxes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("battologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "battologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "battologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("battologized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "battologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "battologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("battologizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "battologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "battologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("beaverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "beaverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "beaverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beaverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "beaverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("beclamor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "beclamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beclamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beclamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beclamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beclamoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beclamouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beclamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beclamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("becolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "becolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "becolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("becudgel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "becudgeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "becudgelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "becudgeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "becudgelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bedevil (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bedeviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bedevilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bedeviling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bedevilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bedlamize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bedlamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bedlamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bedlamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bedlamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bedlamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bedlamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bedlamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bedlamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bedrivel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bedriveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bedrivelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bedriveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bedrivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Beera (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Beera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Berea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Beera\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Berea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("beeves (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "beeves", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "beefs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("animal"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beefs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("complaint"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beefs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("befavor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "befavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "befavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("beglamor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "beglamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beglamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beglamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beglamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beglamoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beglamouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beglamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "beglamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behavior (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behavior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behaviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behavioral (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behavioral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behavioural", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavioraler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouraler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavioralest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouralest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behaviorally (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behaviorally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourally", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behaviored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behaviored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behavioured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behaviorism (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behaviorism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behaviorisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behaviorism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behaviorist (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behaviorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behaviorists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behaviorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behavioristic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behavioristic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouristic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavioristicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouristicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavioristicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouristicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behavioristics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "behaviouristics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Behmenism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Behmenism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Behmenism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behmenism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "boehmenism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Behmenist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Behmenist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Behmenist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Behmenite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Behmenite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Behmenite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boehmenite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behoove (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behoove", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behove", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behooved", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behoved", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behooving", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behoving", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behooves", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behoves", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behoove\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behove\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behoovings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behovings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "behooving\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "behoving\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("behoovingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "behoovingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "behovingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bejewel (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bejeweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bejewelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bejeweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bejewelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bel (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bael", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "baels", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bael\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("belabor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "belabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "belabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "belabored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "belaboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "belaboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "belabouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "belabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "belabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "belabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "belabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Belter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Belter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boelter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Belter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boelter\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Belus (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Belus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boelus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Belus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boelus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bemedaled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bemedaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bemedalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Beria (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Beria", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baeria", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Beria\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baeria\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("berk (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "berk", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "burk", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "berks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "burks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Berl (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Berl", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baerl", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Berl\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baerl\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Berlinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Berlinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Berlinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Berlinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Berlinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Berlinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Berlinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("berloque (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "berloque", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "breloque", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("berme (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "berme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "breme", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bern (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bern", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bren", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Bessemerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Bessemerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bessemerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Bessemerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bessemerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Bessemerize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bessemerise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bestialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bestialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bestialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bestialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bestialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bestializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bestialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bestializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bestialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bevel (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "beveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bevelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "beveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bevelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bevellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "beveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "beveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bevelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bevelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bevellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Beyer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Beyer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baeyer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Beyer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Baeyer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bias (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biased", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "biassed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "biasing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "biassing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bichromatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bichromatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bichromatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bichromatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bichromatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bicolor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicolorrer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicolorrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolourest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bicolored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bicoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bicoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bicolorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bicolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bicolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bimetalist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bimetalist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bimetallist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bimetalistic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bimetalistic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bimetallistic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("binge (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bingeing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "binging", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biocenology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biocenology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "biocoenology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biocenose (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biocenose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "biocoenose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "biocenosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "biocoenosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "biocenoses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "biocoenoses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biocenotic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biocenotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "biocoenotic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biographize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biographize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biographise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "biographizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biographises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biologize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "biologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("biosynthesized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "biosynthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biosynthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bipolarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bipolarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bipolarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bipolarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bipolarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bipolarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bipolarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bipolarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Birminghamize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Birminghamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Birminghamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Birminghamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Birminghamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Birminghamize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Birminghamise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bister (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bister", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bistre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bisters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bistres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bister\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bistre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bistered (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bistered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bistred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bisteredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bistredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bistereddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bistreddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bittor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bittor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bittour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bittors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bittours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bituminization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bituminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bituminizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bituminization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bituminize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bituminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bituminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bituminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bituminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bituminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bizet (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bizet", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "biset", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blaize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blaize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "blaise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blamable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blamable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blameable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blastocele (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blastocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "blastocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blastule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blastule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "blastulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blennemesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blennemesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "blennoemesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blennorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blennorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blennorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blond (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blond", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blonde", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("form generally used"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blonds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blondes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("form generally used"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blond\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blonde\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("form generally used"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blond", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often masculine forms, especially in Brit. English"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blonds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often masculine forms, especially in Brit. English"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blond\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often masculine forms, especially in Brit. English"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blonde", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often feminine forms, especially in Brit. English"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blondes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often feminine forms, especially in Brit. English"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blonde\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("often feminine forms, especially in Brit. English"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("blowzy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "blowzy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blowsy", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blowzier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blowsier", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "blowziest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "blowsiest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bluing (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bluing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "blueing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bluing\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "blueing\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boatswain (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boatswain", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bosun", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bo\'sun", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bos\'n", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bo\'s\'n", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boatswains", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bosuns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bo\'s\'ns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bo\'suns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bos\'ns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boatswain\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bosun\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bo\'sun\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bo\'s\'n\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bos\'n\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bobbysoxer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bobbysoxer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bobby-soxer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bobbysoxers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bobby-soxers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bobbysoxer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bobby-soxer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boccie (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boccie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bocce", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bocci", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boccie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bocce\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bocci\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Boedromius (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Boedromius", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boaedromius", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Boedromius\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Boaedromius\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bogie (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bogie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bogies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogeys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bogie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogey\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bogey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bogie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bogeys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bogey\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bogy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "bogie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boled (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "boloed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Bolshevize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Bolshevize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bolshevise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Bolshevized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bolshevised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Bolshevizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Bolshevising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bolshevize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bolshevise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bolshevized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bolshevised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bolshevizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bolshevising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bolshevizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bolshevises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bolshie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bolshie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bolshy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bonderize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bonderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bonderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bonny (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bonny", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bonnie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bony (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bony", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boo-boo (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boo-boo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "booboo", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boo-boos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "booboos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boo-boo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "booboo\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boogeyman (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boogeyman", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boogerman", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boogeymen", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boogermans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boogeyman\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boogerman\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boombox (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boombox", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boom box", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boomboxes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boom boxes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boombox\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "boom box\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bootee (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bootee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bootie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("boot"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bootees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "booties", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("boot"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bootee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bootie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("boot"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bootie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("buttocks"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booties", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("buttocks"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bootie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("buttocks"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("plunder taken"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booties", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("plunder taken"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "booty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("plunder taken"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("borage (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "borage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bourage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("borasque (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "borasque", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bourasque", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bord (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bord", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bourd", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bords", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bourds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("borg (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "borg", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bourg", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("borize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "borize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "borise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "borizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "borises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("borscht (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "borscht", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "borsch", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "borscht\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "borsch\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Boswellize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Boswellize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Boswellise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Boswellized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Boswellised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Boswellizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Boswellising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Boswellizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Boswellises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("botanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "botanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "botanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "botanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "botanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("botanizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "botanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "botanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "botaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Bougainvillea (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Bougainvillea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Bougainvillaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":upper"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Bougainvillea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Bougainvillaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":upper"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bougainvillea", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bougainvillaea", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":lower"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bougainvilleas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bougainvillaeas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":lower"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boulder (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boulder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowlder", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boulders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowlders", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boulder\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowlder\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("boulevardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boulevardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "boulevardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boulevardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "boulevardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bourbonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bourbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bourbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bourbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bourbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bowdlerization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bowdlerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bowdlerize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bowdlerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bowdlerizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bowdlerizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdleriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdlerisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bowdlerizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bowdleriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bowel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "boweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "boweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bradypnea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bradypnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bradypnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("breathalyze (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "breathalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "breathalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "breathalyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "breathalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("breathalyzer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "breathalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "breathalyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Breathalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("trademark"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "breathalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "breathalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brier (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "briar", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "briers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "briars", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "briar\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brimful (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brimful", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brimfull", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brinkmanship (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brinkmanship", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brinksmanship", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brinkmanship\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brinksmanship\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("briquette (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "briquette", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "briquet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "briquettes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "briquets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "briquette\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "briquet\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("briza (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "briza", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brisa", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "briza\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brisa\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bromethylene (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bromethylene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bromoethylene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brominize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brominize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brominise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brominizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brominises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bromization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bromization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bromisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bromization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bromisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bromize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bromize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bromise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bromized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bromised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bromizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bromising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bronco (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bronco", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "broncho", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bronco\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "broncho\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "broncos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bronchos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brusque (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brusque", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brusk", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brusquer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brusker", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brusquest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bruskest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brusquely (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brusquely", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bruskly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brusqueness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brusqueness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bruskness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brusquenesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "brusknesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brusqueness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bruskness\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brutalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brutalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brutalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brutalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("brutalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "brutalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brutalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brutalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "brutalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "brutalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Budenny (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Budenny", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Budaenny", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Budenny\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Budaenny\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bunco (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bunco", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bunko", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "buncos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bunkos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bunco\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bunko\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "buncoed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bunkoed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "buncoing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "bunkoing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bunkum (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bunkum", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "buncombe", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bunkums", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "buncombes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bunkum\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "buncombe\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bureaucratization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bureaucratization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bureaucratizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bureaucratization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bureaucratize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bureaucratize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bureaucratized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bureaucratizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bureaucratizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "bureaucratises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("burglarize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "burglarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burglarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burglarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burglarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burglarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burglarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burglarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burglarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("burka (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "burka", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burqa", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "burkha", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burkas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burqas", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "burkhas", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burka\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burqa\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "burkha\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("burnettize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "burnettize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burnettise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burnettized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burnettised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burnettizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burnettising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burnettizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "burnettises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("burnoose (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "burnoose", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "burnous", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burnooses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "burnouses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "burnoose\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "burnous\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bus (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("to avoid confusion with buss"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "buses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "busses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "buses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "busses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "busing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bussing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "busings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bussings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "busing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bussing\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bused", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "bussed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bushel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "busheled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bushelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "busheling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bushelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bushelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bushellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("busheler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "busheler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "busheller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bushelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "bushellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "busheler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "busheller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("bylaw (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "bylaw", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "byelaw", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bylaws", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "byelaws", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "bylaw\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "byelaw\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Byronize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Byronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Byronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Byronize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byronise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Byzantinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Byzantinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byzantinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Byzantinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byzantinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Byzantinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Byzantinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cabby (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cabby", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cabbie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cabby\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cabbie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cabbies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cachemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cachemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cachaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cachemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cachemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cachaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacodemon (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacodemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacodaemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cacodemons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacodaemons", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacodemoniac (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacodemoniac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacodaemoniac", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacodemonial (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacodemonial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacodaemonial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacodemonic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacodemonic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacodaemonic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cacoethes (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cacoethes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacoaethes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cacoethes\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cacoaethes\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cadaster (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cadaster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cadastre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cadasters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cadastres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cadaster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cadastre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cadaverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cadaverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cadaverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cadaverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cadaverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cadmiumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cadmiumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cadmiumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cadmiumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cadmiumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Caesarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Caesarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Caesarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Caesarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Caesarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Caesarize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Caesarise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caffer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caffer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caffre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caftan (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caftan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kaftan", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caftans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kaftans", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caftan\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kaftan\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cagey (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cagey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cagy", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caginess (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caginess", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cageyness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caginesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cageynesses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caginess\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cageyness\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caiman (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caiman", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cayman", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caimans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caymans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caiman\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cayman\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calander (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calander", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "calandre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calcemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calcemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "calcaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calendarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calendarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calendarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calendarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calendarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calendarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calendarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calendarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "calendarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Calender (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Calender", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Calendre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Calender\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Calendre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caliber (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caliber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "calibre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calibers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "calibres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caliber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "calibre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caliper (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caliper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calliper", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calipered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "callipered", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calipering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "callipering", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calipers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "callipers", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caliper\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calliper\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calipers\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "callipers\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caliph (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caliph", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "calif", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "khalif", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caliph\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "calif\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "khalif\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caliphes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "califs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "khalifs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calisthenics (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calisthenics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "callisthenics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calk (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caulk", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caulked", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caulking", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caulks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "calk\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caulk\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calk", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calked", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calking", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calk", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caulking", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "calking", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caulkings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "calkings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caulk\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "calk\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caulking\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "calking\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Callirrhoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Callirrhoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Callirrhoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Callirrhoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Callirrhoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("calodemon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "calodemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "calodaemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Calvinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Calvinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Calvinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Calvinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Calvinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Calvinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Calvinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("camelhair (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "camelhair", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("camel hair (camel\'s hair)"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("camisades (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "camisades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "camisadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("camize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "camize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "camise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Canadianization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Canadianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Canadianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Canadianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Canadianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Canadianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Canadianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Canadianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Canadianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canaler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canaller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Cananean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Cananean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cananaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cananean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cananaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancel (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canceled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancelled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canceling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancelling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancelable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cancelable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancellable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancelate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cancelate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancellate", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancelated (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cancelated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancellated", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canceler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canceler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canceller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cancelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canceler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canceller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancellation (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cancellation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cancelation", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cancelous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cancelous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cancellous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("candor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "candor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "candour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "candors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "candours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "candor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "candour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canephore (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canephore", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canephorae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canephore", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "canephoroe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canisterization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canisterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canisterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canisterize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canisterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canisterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canisterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canisterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canisterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cannibalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cannibalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cannibalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cannibalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cannibalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cannibalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cannibalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cannibalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cannibalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cannibalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canonicalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canonicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canonicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canonicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonicalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonicalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonicalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonicalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canonization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canonize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("canonizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "canonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "canonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "canoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cantaloupe (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cantaloupe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantaloup", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantaloupes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantaloups", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantaloupe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantaloup\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cantonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cantonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cantonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cantonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cantonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cantonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capitalizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capitalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capitalization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capitalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capitalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capitalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capitalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capitaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Caponization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Caponization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Caponisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caponize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caponize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caponizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caponizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caponizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caponiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capsulization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capsulization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capsulisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("capsulize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "capsulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capsulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capsulized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capsulised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capsulizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capsulising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "capsulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "capsulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caracol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caracoled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caracolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caracoling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caracolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caramelization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caramelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caramelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caramelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caramelize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caramelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caramelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caramelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caramelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "caramelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caravansary (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caravansary", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caravanserai", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caravansaries", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caravansarais", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caravansarai", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caravansary\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caravanserai\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbolization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonades (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonatization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carbonizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carbonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carboniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carbonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carbonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carboniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carburetor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carburetor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carburettor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburetter", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburetors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carburettors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburetters", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburetor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carburettor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburetter\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carburization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carburization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carburize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carburize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carburizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carburizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carburizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carburiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cardie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cardie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cardiae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cardueline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cardueline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carduelinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carnalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carnalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carnalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carnalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carnalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carnalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carnalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carnalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "carnalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carny (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carny", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(1),}, + ], + }, + Variant { + word: "carnie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carnies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carneys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carny\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carney\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(1),}, + ], + }, + Variant { + word: "carnie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carol (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caroled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caroling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caroler (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caroler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caroller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carolers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "carollers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caroler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caroller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carotinemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carotinemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "carotinaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("carousel (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "carousel", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carrousel", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carousels", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carrousels", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "carousel\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "carrousel\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cartelization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cartelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cartelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cartelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cartelize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cartelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cartelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cartelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cartelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cartelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("casino (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "casino", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casinos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casino\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casino", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cassino", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("card game"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casinos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cassinos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("card game"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casino\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cassino\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("card game"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caster (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "castor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "castors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "castor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "castor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "castors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "castor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "castor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":4"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "castors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":4"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "castor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":4"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("castorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "castorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "castorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "castorizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "castoriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "castorized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "castorised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("casualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "casualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("casualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "casualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "casualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "casualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catabolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catabolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catabolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catalog (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catalog", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalogue", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalogued", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalogs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalogues", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalog\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalogue\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cataloger (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cataloger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalogers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloger\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cataloguize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cataloguize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloguized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloguizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cataloguizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cataloguises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catalyze (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catalysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [catalysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catalyzer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catalyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "catalyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catechizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catechizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catechization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catechization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catechize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catechize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catechizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catechizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catechizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catechiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("categorization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "categorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("categorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "categorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("categorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "categorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "categorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "categorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catharize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catharize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catharise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catharized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catharised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catharizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catharising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catharizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catharises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catheterization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catheterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catheterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catheterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catheterize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catheterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catheterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catheterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catheterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catheterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Catholicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Catholicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Catholicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Catholicized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Catholicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Catholicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Catholicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Catholicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("catholicizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "catholicizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholiciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholicisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "catholicizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "catholiciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cauldron (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cauldron", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caldron", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauldrons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caldrons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauldron\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caldron\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("causticization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "causticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "causticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "causticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("causticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "causticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "causticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("causticizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "causticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "causticizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "causticisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cauterization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cauterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cauterize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cauterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cauterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cauterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caviar (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caviar", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caviare", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caviars", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caviares", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caviar\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "caviare\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cavil (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cavilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caviling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cavilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cavilings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cavillings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cavilation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cavilation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cavillation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("caviler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "caviler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caviller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cavilers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cavillers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "caviler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caviller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cecally (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cecally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecally", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cecitis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cecitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cecitises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cecity (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cecity", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecity", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cecostomy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cecostomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecostomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cecotomy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cecotomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caecotomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Celastraceae (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Celastraceae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Coelastraceae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Celastraceae\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Coelastraceae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celastraceous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celastraceous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coelastraceous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celestialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celestialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "celestialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celestializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "celestialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celestine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celestine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coelestine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celiac (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celiac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeliac", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celiacs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeliacs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celialgia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celialgia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coelialgia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celiomyalgia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celiomyalgia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeliomyalgia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celiorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celiorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeliorrhea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celioscopy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celioscopy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coelioscopy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celiotomy (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celiotomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeliotomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celom (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celom", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coelom", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celoms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeloms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "coelomata", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celom\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coelom\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celoma (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celoma", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeloma", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celomata", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coelomata", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("celoscope (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "celoscope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeloscope", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "celoscope\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coeloscope\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Celticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Celticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Celticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Celticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Celticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Celticize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Celticise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenacle (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenacle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenacle", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenacle\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenacle\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenaculum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenaculum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenaculum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenesthesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Cenis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Cenis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Caenis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cenis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Caenis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobite (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenobites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenobite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobitic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobitic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobitic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobitical (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobitical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobitical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobitism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobitism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobitism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenobitism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobitism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenobium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenobium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenobium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenoby (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenoby", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenoby", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenogenetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenogenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caenogenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cenogenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenogenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenogenetically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenogenetically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caenogenetically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenosite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenosite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenosite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenospecies (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenospecies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenospecies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenospecific (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenospecific", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenospecific", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenospecifically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenospecifically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coenospecifically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cenozoic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cenozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caenozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("center (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "center", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "center\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centrings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centering\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "centres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerboard (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerboard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreboard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerboards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreboards", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerboard\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreboard\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerfold (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerfold", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrefold", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerfolds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrefolds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerfold\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrefold\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrelesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrelessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerline (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreline", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerlines", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrelines", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerline\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centreline\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centermost (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centermost", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centremost", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centerpiece (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centerpiece", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrepiece", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerpieces", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrepieces", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centerpiece\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centrepiece\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Centerville (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Centerville", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Centreville", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Centerville\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Centreville\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centigram (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centigram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "centigramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centigrams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "centigrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centigram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "centigramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centiliter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centiliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centilitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centiliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centilitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centiliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centilitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centimeter (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centimetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centimeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centimetres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "centimetre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centralization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centralize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centralizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centrifugalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centrifugalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centrifugalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centrifugalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("centrifugalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "centrifugalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centrifugalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centrifugalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "centrifugalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "centrifugalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cephalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cephalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cephalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cephalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cephalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cephalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cephalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ceres", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "crees", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cere\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cree\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cera (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "crea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cerat (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cerat", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "creat", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ceratin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ceratin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "creatin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ceratins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "creatins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cerebralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cerebralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cerebralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cerebralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cerebralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cerebralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cerebralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cerebralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cerebralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cerebralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cerebralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cerebralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ceremonialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ceremonialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ceremonialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ceremonializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ceremonialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cerolite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cerolite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "creolite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cerule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cerule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caerule", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ceruleolactite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ceruleolactite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coeruleolactite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cesar (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cesar", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caesar", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cesarean (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cesarean", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caesarean", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesarian", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cesarian", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cesareans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caesareans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesarians", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cesarians", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cesarean\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "caesarean\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesarian\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cesarian\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Cesaria (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Cesaria", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Caesaria", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cesaria\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Caesaria\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cesious (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cesious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "caesious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cesium (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cesium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cesiums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesiums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cesium\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesium\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cespitose (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cespitose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caespitose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cespitosely (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cespitosely", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caespitosely", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cestus (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cestus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caestus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cestuses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caestuses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cesural (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cesural", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "caesural", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cetus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cetus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "coetus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chaces (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chaces", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chacoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chalaze (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chalaze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chalazae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Chaldeans (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Chaldeans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Chaldaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chameleonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chameleonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chameleonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chameleonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chameleonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Chamizal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Chamizal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Chamisal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Chamizal\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Chamisal\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chamois (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chamois", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chamois", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shammy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "chammy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chamois\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shammy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "chammy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chamois", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chamoix", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" :2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chamomile (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chamomile", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "camomile", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chamomiles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "camomiles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chamomile\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "camomile\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("championize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "championize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "championise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "championizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "championises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("channel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "channeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "channelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "channelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("channeler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "channeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "channeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "channellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "channeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("channelization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "channelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("channelize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "channelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "channelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "channelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chaperon (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chaperon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chaperone", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaperons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chaperones", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaperon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chaperone\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chaptalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chaptalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaptalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chaptalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chaptalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaptalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaptalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chaptalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chaptalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("characterizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "characterizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("characterization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "characterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("characterize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "characterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("characterizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "characterizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characteriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characterisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "characterizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "characteriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("charer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "charer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "charre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chattelization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chattelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chattelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chattelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chattelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chattelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chattelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chattelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chattelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chattelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chattelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chattelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("check (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "check", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cheque", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bank"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "chequed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bank"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "chequing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bank"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cheques", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bank"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "check\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cheque\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bank"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checker", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checker\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkers\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequers\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequered", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chequering", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "check", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checker", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "check\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checker\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkers\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("verify"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("checkbook (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "checkbook", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequebook", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkbooks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequebooks", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkbook\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequebook\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("checkerboard (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "checkerboard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequerboard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkerboards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequerboards", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "checkerboard\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chequerboard\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cheerfulize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cheerfulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cheerfulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cheerfulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cheerfulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cheerly (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cheerly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cherely", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chelicere (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chelicere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chelicerae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chemicalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chemicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chemicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chemicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chemicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chemicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chemicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chemicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chemicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chemicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chemicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chemicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chenix (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chenix", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "choenix", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chenixes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "choenixes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chetopod (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chetopod", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chaetopod", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chiffer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chiffer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chiffre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("childer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "childer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "childre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chili (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chili", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chile", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chilli", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chilies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chiles", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chilis", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "chillies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chili\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chile\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chilli\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chimera (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chimera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaera", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chimera\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaera\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chimeras", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaeras", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chimerid (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chimerid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaerid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chimerids", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaerids", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chimerism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chimerism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaerism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chimerisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chimaerisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chisel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chiseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chiselled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chiseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chiselling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chiseler (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chiseler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chiseller", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chiselers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chisellers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chiseler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chiseller\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chitterlings (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chitterlings", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chitlins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chitlings", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chitterlings\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chitlins\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chitlings\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chivy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chivy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chivvy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chivied", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chivvied", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chivying", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chivvying", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chivies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chivvies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloranemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloranemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chloranaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chloraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloridize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloridized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloridised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloridizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloridising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chlorinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chlorinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chlorinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chlorinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chlorinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloritization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloritization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloritisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloritizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloritisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloroanemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloroanemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chloroanaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloroformization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloroformization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloroformisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloroformizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloroformisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloroformization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloroformisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chloroformize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chloroformize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloroformise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chloroformizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chloroformises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chlorophyll (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chlorophyll", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorophyl", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chlorophylls", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorophyls", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chlorophyll\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chlorophyl\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chocoholic (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chocoholic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chocaholic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chocoholics", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chocaholics", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chocoholic\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "chocaholic\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chocolaty (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chocolaty", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "chocolatey", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Choephori (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Choephori", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Choaephori", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Choephori\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Choaephori\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cholemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cholemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cholaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cholemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cholaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cholophein (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cholophein", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cholophaein", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("choosy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "choosy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "choosey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Christianization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Christianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Christianize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Christianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Christianizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Christianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Christianizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Christianiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "christianizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "christianisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chromatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chromatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chromatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chromesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chromesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "chromaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chromicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chromicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chromicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chromize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chromize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chromized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chromizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chromizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chromises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chronologize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chronologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chronologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chronologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chronologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chronologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chronologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chronologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "chronologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("chutzpah (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "chutzpah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hutzpa", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "chutzpa", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hutzpah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chutzpah\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hutzpa\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "chutzpa\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hutzpah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "chutzpahes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hutzpas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "chutzpas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hutzpahes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatricule (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatricule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatriculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrix (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrix", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrice", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrices", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cicatrixes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrix\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrice\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrizant (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrizant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrisant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrizate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrizate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrisate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cicatrizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cicatrizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cicatrizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cicatriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ciceronianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ciceronianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ciceronianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ciceronianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ciceronianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ciceronianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ciceronianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cigarette (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cigarette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cigaret", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cigarettes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cigarets", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cigarette\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cigaret\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cimicide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cimicide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cimicidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cinchonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cinchonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cinchonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cinchonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cinchonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cinchonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cinchonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cinchonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cinchonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinchonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cinematize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cinematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cinematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cinter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cinter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cintre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cipher (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cipher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cypher", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cipher\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cypher\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cipher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cipher\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Circean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Circean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Circaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("circularization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "circularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("circularize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "circularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("circularizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "circularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circulariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circularisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "circulariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("circumcenter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "circumcenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "circumcentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "circumcenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "circumcentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("circumesophagal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "circumesophagal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "circumoesophagal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cithern (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cithern", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cithren", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "citherns", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cithrens", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("citizenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "citizenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "citizenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "citizenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "citizenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "citizenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "citizenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "citizenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "citizenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilizational (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizationaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisationaler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizationalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisationalest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizationals", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisationals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizational\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisational\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilizatory (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilizatory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisatory", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilizedness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilizedness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisedness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizednesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisednesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizedness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisedness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civilizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "civiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("civvy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "civvy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "civie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civvies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "civies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "civvy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "civie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clamor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamoring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clamorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clamorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clamorist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clamorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "clamourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clamorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "clamourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clamorsome (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clamorsome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clamoursome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clangor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clangor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clangour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clangored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clangoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clangoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clangouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clangors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clangours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clangor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "clangour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clares (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clares", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "claroes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clarinetist (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clarinetist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "clarinettist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clarinetists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "clarinettists", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clarinetist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "clarinettist\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("classicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "classicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "classicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("classicization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "classicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("classicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "classicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "classicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "classicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "classicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "classicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clausule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clausule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "clausulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clericalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clericalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "clericalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "clericalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "clericalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Clete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Clete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cloete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Clete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cloete\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("climatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "climatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "climatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "climatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "climatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "climatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "climatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "climatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "climatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("clower (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "clower", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "clowre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Clytie (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Clytie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Clytiae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Clytie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Clytiae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cocaine (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cocaine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cocain", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocaine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cocain\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cocainization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cocainization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocainizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocainization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cocainize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cocainize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocainized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocainizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cocainizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocainises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coconut (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coconut", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cocoanut", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coconuts", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cocoanuts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coconut\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cocoanut\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cocuiza (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cocuiza", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cocuisa", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Coe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Coe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cooe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Coe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cooe\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ce", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coeducationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coeducationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coeducationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coeducationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coeducationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coenamor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coenamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coenamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coenamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coenamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coenamoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coenamouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coenamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coenamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coenamorment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coenamorment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coenamourment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coequalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coequalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coequalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coequalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coequalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizableness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizably (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizance (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizance", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisance", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizances", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisances", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizance\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisance\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizant (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizanter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisanter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizantest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisantest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cognizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cognizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cogniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cognisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cognizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cogniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colander (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colander", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cullender", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colanders", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cullenders", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colander\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cullender\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("collateralize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "collateralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collateralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("collectibility (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "collectibility", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "collectability", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectibilities", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "collectabilities", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectibility\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "collectability\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("collectible (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "collectible", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "collectable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectibles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "collectables", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectible\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "collectable\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("collectivization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "collectivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectivizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectivization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("collectivize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "collectivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "collectivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "collectivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colloquialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colloquialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colloquializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colloquize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colloquize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colloquized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colloquizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colloquizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colloquises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonizationist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonizationist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisationist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizationists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisationists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizationist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisationist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colonizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coloniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "colonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "coloniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("color (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "color", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coloured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "color\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "coloureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colors\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colours\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorableness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourablenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorably (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloradan (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloradan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouradan", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloradans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouradans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorado (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorado", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourado", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloradoite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloradoite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouradoite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloradoite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouradoite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorama (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorama", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourama", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorant (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorants", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourants", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorant\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourant\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloration (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colouration", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourations", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "OED has coloration as the preferred spelling and discolouration as a", + "variant for British English for some reason", + ], + }, +Cluster { + header: Some("colorational (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourational", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorationaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourationaler", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorationalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourationalest", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorationally (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorationally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourationally", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorationallier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourationallier", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorationalliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourationalliest", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorative (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorative", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourative", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorbearer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorbearer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbearer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorbearer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbearer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorblind (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorblind", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourblind", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorblindness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorblindness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourblindness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorblindnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourblindnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorblindness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourblindness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorbreed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorbreed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbreed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorbred", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorbreeding", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbreeding", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorbreeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourbreeds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorcast (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorcast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorcasting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcasting", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorcasts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcasts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorcast\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcast\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorcasted (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorcasted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcasted", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorcaster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorcaster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcaster", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorcasters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourcasters", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorectal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorectal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourectal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorectitis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorectitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourectitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorectostomy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorectostomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourectostomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorfast (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorfast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorfastness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorfastness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfastness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfastnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfastnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfastness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfastness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorful (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfuler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfuler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfulest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfulest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorfully (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorfully", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfully", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfullier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfullier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfulliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfulliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorfulness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorfulness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfulness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfulnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfulnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorfulness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourfulness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorific (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorific", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourific", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorifics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourifics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorific\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourific\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimeter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimeter", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorimeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimeters", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimeter\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimetric (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimetric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetric", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorimetrics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetrics", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimetrical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimetrical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetrical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimetrically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimetrically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetrically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimetrist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimetrist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetrist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorimetrist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetrist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorimetry (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorimetry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetry", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorimetries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourimetries", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorist (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "colourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "colourists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "colourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloristic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloristic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouristic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloristicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouristicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloristicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouristicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coloristics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouristics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloristically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloristically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouristically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "colourizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorless (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorlessly (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorlessly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlesslier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlesslier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlessliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorlessness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorlessness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlessnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorlessness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourlessness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colormaker (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colormaker", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmaker", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colormaking (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colormaking", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmaking", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorman (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourman", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colormen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourman\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colormap (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colormap", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmap", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colormaps", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmaps", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colormap\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourmap\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coloroto (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coloroto", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colouroto", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorpoint (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorpoint", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourpoint", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorpoints", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourpoints", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorrhaphy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorrhaphy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "colourrhaphy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colortype (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colortype", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourtype", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colorway (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colorway", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourway", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "colorways", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "colourways", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("colory (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "colory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coloury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("columnization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "columnization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "columnizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "columnization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("columnize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "columnize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "columnized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "columnizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "columnizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "columnises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comedia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "comoedia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("commercialization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "commercialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commercializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commercialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("commercialize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "commercialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commercialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commercializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commercializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commercialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("commonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "commonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "commonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "commonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("communalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "communalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("communalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "communalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("communalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "communalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("communization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "communization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("communize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "communize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "communizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "communises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("companionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "companionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "companionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "companionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "companionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("compartmentalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "compartmentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("compartmentalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "compartmentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("compartmentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "compartmentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "compartmentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "compartmentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comper (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "compoer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("complementizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "complementizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "complementiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "complementizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "complementiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Composite (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Composite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Compositae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comprehensivization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comprehensivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "comprehensivizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comprehensivize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comprehensivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "comprehensivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "comprehensivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "comprehensivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprehensivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comprizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comprizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("comprizal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "comprizal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprisal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "comprizal\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "comprisal\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("computerizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "computerizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("computerization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "computerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "computerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "computerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("computerize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "computerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "computerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "computerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "computerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "computerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concenter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concentered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concentred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concentering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concentring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conceptualization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conceptualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conceptualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conceptualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conceptualize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conceptualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conceptualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conceptualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conceptualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conceptualizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conceptualizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conceptualiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concertist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concertist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concretist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concertize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concertize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concertized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concertizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concertizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concertizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concertizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concertizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concertizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concertiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conche (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conche", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "conchae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concolorous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "concolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concretization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concretization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concretizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concretization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("concretize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "concretize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concretized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concretizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "concretizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "concretises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conditionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conditionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conditionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conditionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conditionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coneys (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coneys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cony", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "coney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cony\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "coney\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("confederatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "confederatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "confederatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "confederatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "confederatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("congenialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "congenialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "congenialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "congenializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "congenialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conges (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conges", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "congoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("congregationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "congregationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "congregationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "congregationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "congregationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conjurer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conjurer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conjuror", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conjurers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conjurors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conjurer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conjuror\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("connectable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "connectable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connectible", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("connection (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "connection", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connexion", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "connection\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connexion\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "connections", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connexions", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("connector (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "connector", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connecter", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "connectors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connecters", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "connector\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "connecter\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conservatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conservatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conservatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conservatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conservatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conservatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conservatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conservatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conservatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("consonantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "consonantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "consonantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "consonantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "consonantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "consonantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "consonantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "consonantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "consonantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("constitutionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "constitutionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "constitutionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "constitutionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("constitutionalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "constitutionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "constitutionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "constitutionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "constitutionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "constitutionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("containerization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "containerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "containerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "containerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("containerize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "containerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "containerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "containerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "containerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "containerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("contemporization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "contemporization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contemporisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("contemporize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "contemporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contemporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contemporized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contemporised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contemporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contemporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contemporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contemporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("contextualization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "contextualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contextualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("contextualize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "contextualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contextualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contextualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "contextualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "contextualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Continentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Continentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Continentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Continentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Continentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("controversialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "controversialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "controversialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "controversializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "controversialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conundrumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conundrumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conundrumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conundrumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conundrumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("convener (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "convener", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "convenor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveners", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "convenors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "convener\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "convenor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conventionalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conventionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conventionalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conventionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conventionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conventionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conventionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conventionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conversationize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conversationize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conversationise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conversationizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conversationises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("converter (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "converter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertor", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "converters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertors", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "converter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertor\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "converter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "converters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "converter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "convertor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conveyor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conveyor", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveyors", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveyor\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("conveyorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "conveyorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveyorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveyorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "conveyorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "conveyorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("convivialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "convivialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "convivialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "convivializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "convivialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cookie (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cookie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cooky", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cookie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cooky\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copolymerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copolymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copolymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copolymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copolymerize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copolymerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copolymerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copolymerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copolymerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copolymerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copperization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copperization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copperisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copperizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copperisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copperization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copperisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copperize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "copperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "copperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "copraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("copremic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "copremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "copraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coraled (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coraled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coralled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coranto (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coranto", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "couranto", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corantoes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courantoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corantos", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courantos", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corbe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corbe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courbe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corbed (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corbed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courbed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corbel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corbeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "corbelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corbeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "corbelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corbeling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "corbelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corbelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "corbellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cordialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cordialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cordialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cordialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cordialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cordializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cordialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cordializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cordialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corge (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courge", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Corinthianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Corinthianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Corinthianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Corinthianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Corinthianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Corinthianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Corinthianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corinthianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corinthianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corinthianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corinthianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corinthianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corinthianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corinthianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corinthianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corporealization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corporealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corporealizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corporealization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corporealize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corporealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corporealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corporealizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "corporealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "corporealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corsy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corsy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coursy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cortage (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cortage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courtage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cortin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cortin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "courtin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cortine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cortine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cortinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("corve (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "corve", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "corvae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coryphe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coryphe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coryphae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coryphes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "coryphaes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cosmeticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cosmeticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmeticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmeticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmeticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmeticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmeticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmeticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmeticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cosmopolitanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cosmopolitanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmopolitanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmopolitanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cosmopolitanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cosmopolitanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmopolitanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmopolitanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cosmopolitanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosmopolitanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cosplendor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cosplendor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cosplendour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coste (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coste", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "costae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("costumier (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "costumier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "costumire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cottar (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cottar", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cotter", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cottars", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cotters", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cottar\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cotter\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cotter", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cotters", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cotter\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cotte (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cotte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cottae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cottonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cottonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cottonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cottonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cottonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cottonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cottonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cottonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cottonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cottonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cottonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cottonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cotyle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cotyle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cotylae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("councilor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "councilor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "councilors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "councilor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("councilorship (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "councilorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillorship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "councilorships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillorships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "councilorship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "councillorship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("counsel (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "counseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "counseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("counselee (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "counselee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counsellee", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("counselor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "counselor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "counsellor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "counselors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "counsellors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "counselor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "counsellor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("counselorship (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "counselorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counsellorship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "counselorships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counsellorships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "counselorship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "counsellorship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("countercolored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "countercolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "countercoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("countor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "countor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "countour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cozily (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cozily", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosily", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("coziness (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "coziness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosiness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coziness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosiness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cozy (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cozy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cozied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosied", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cozier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "coziest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosiest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cozying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosying", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cozies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cozy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cosy\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("craizey (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "craizey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "craisey", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crambes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crambes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cramboes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crawlerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crawlerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crawlerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crawlerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crawlerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("creaturize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "creaturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creaturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creaturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creaturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crenel (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "creneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crenelate (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crenelate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelater", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellater", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelatest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellatest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelating", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellating", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crenelation (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crenelation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crenelation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crenellation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Creolization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Creolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Creolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Creolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Creolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Creolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Creolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Creolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Creolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Creolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Creolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Creolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "creolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "creolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cretinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cretinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cretinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cretinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cretinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cretinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cretinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cretinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cretinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cretinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criminalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criminalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criminalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criminalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criminalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criminalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criminalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criminalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criminalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criminalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criticizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criticizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criticize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criticizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("criticizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "criticizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "criticizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "criticisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crofterization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crofterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crofterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crofterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crofterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crofterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crofterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crofterize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crofterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crofterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crofterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crofterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crosier (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crosier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crozier", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crosiers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "croziers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crosier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crozier\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cruel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crueler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "crueller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cruelest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cruellest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cruelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cruelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cruelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cruelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cruelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cryesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cryesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cryaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cryoanesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cryoanesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cryoanaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cryptanalyzes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cryptanalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cryptanalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cryptesthesia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cryptesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cryptaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cryptesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cryptaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cryptesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cryptesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cryptaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crystallizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crystallizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crystallizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crystallizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crystallization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crystallization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crystallize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crystallize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystalize", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "crystallise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystalized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "crystallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystalizing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "crystallising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystalizes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "crystallises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("crystallizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "crystallizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystalliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "crystallizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "crystallisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Cubanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Cubanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Cubanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cubanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Cubanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cubanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Cubanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cuckoldize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cuckoldize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cuckoldise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cuckoldized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cuckoldised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cuckoldizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cuckoldising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cuckoldizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cuckoldises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cudgel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cudgeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cudgeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cudgelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cudgeler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cudgeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cudgelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cudgeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cudgeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("culicide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "culicide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "culicidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("culturization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "culturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "culturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "culturizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "culturisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "culturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "culturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("culturize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "culturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "culturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "culturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "culturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cupel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cupeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cupeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cupelation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cupelation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupellation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cupeler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cupeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cupelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cupeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cupule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cupule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cupulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curarize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curb (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curb", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("restrain"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("restrain"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("restrain"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("restrain"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curb\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("restrain"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curb", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerb", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("street edge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerbed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("street edge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerbing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("street edge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curbs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerbs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("street edge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curb\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerb\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("street edge"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curlicue (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curlicue", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "curlycue", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curlicues", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "curlycues", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curlicue\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "curlycue\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curlicue", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curlicues", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curricularization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curricularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curricularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curricularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curricularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curricularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curricularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curricularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curricularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curricularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curricularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "curricularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curtsy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curtsy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "curtsey", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curtsied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "curtseyed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curtsying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "curtseying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curtsies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "curtseys", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "curtsy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "curtsey\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("curvaceous (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "curvaceous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "curvacious", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("customizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "customizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("customization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "customization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("customize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "customize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("customizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "customizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "customizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "customisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cutesy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cutesy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cutesie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cuticolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cuticolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cuticolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cutinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cutinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cutinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cutinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cutization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cutization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cutisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cutlass (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cutlass", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cutlas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutlasses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cutlases", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cutlass\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cutlas\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cuve (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cuve", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cuvae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Cyanee (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Cyanee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cyaneae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Cyanee\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Cyaneae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyanomethemoglobin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyanomethemoglobin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "cyanomethaemoglobin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclopedia (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclopedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedia", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclopedias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedias", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclopedia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedia\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclopedic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclopedic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclopedically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclopedically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedically", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyclopedist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyclopedist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "cyclopedist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "cyclopaedist\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("cyme (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "cyme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "cymae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("czar (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "czar", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tzar", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tsar", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czars", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tzars", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tsars", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czar\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tzar\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tsar\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("czardom (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "czardom", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzardom", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "tsardom", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czardoms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzardoms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "tsardoms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czardom\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzardom\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "tsardom\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("czarina (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "czarina", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzarina", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tsarina", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czarinas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tsarinas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tzarinas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czarina\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzarina\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tsarina\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("czarism (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "czarism", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tsarism", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tzarism", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czarisms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tsarisms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tzarisms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "czarism\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzarism\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tsarism\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("czarist (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "czarist", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tzarist", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tsarist", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Czechization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Czechization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Czechisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Czechizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Czechisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Czechization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Czechisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("danaide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "danaide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "danaidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dandizette (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dandizette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dandisette", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dandyize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dandyize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dandyise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dandyizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dandyises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dane (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dane", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "danae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Danization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Danization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Danizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Danization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Danize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Danize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Danizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Danize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Danise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Darwinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Darwinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Darwinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Darwinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Darwinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Darwinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Darwinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dastardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dastardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dastardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dastardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dastardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deaconize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deaconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deaconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deaconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deaconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deadrize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deadrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deadrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dealcoholize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dealcoholize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dealcoholise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dealcoholized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dealcoholised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dealcoholizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dealcoholising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dealcoholizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dealcoholises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deaminize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deaminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deaminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deary (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deary", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dearie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deary\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dearie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decaliter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decaliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decalitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decaliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decalitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decaliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decalitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decameter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decameter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decametre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decameters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decametres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decameter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decametre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decapitalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decapitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decapitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decapitalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decapitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decapitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decapitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decapitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decapitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decarbonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decarbonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decarbonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decarbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decarbonizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decarbonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarboniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarbonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarbonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarboniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decarburization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decarburization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarburizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarburization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decarburize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decarburize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarburized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarburizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decarburizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decarburises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decasualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decasualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decasualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decasualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decasualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decasualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decasualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decasualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decasualizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decasualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decasualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decenters (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decentralization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decentralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decentralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decentralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decentralizationist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decentralizationist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralisationist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decentralize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decentralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decentralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decentralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decentralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decentralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decerebrize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decerebrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decerebrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decerebrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decerebrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decerebrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decerebrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decerebrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decerebrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dechristianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dechristianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dechristianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dechristianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dechristianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dechristianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dechristianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dechristianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dechristianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decigram (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decigram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decigramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decigrams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decigrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decigram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decigramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deciliter (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deciliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decilitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deciliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decilitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deciliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decilitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decimalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decimalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decimalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decimalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decimalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decimeter (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decimetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decimetres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decimetre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decivilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decivilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decivilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decivilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decivilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decivilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decivilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolonization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolonize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorant (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decolourant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorants", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "decolourants", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decoloration (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorimeter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourimeter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decolorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decolorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolouriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizer", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizers", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decolorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "decolouriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "decolourizer\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decriminalization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decriminalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decriminalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decriminalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("decriminalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "decriminalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decriminalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decriminalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "decriminalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "decriminalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dedal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dedal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "daedal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dedalian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dedalian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "daedalian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dedramatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dedramatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dedramatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dedramatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dedramatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dedramatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dedramatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dedramatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dedramatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deemphasization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deemphasization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deemphasization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deemphasize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deemphasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deemphasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deemphasizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deemphasizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deemphasizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deemphasisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deenergize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deenergize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deenergise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deenergized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deenergised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deenergizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deenergising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deenergizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deenergises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deenergizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deenergizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deenergiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defedation (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defedation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defoedation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defeminization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defeminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeminization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defeminize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defeminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defense (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defensed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defenced", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defensing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defencing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defense\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "defence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defenseless (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defenseless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defenceless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defenselessly (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defenselessly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselesslier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelesslier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselessliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defenselessness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defenselessness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselessnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenselessness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencelessness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defenseman (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defenseman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defenceman", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defensemen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defencemen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defenseman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "defenceman\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defeudalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defeudalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeudalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeudalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeudalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeudalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeudalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defeudalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defeudalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defibrinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defibrinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defibrinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defibrinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defibrinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defibrinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defibrinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defibrinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defibrinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("definitization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "definitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "definitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "definitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("definitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "definitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "definitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "definitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "definitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "definitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deflectionization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deflectionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deflectionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deflectionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deflectionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deflectionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deflectionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deflectionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deflectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deflectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deflectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deflectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deformalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deformalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deformalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defunctionalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defunctionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defunctionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defunctionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defunctionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defunctionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defunctionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("defunctionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "defunctionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defunctionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "defunctionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "defunctionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deglycerolized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deglycerolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deglycerolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehumanization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehumanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehumanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehumanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehumanize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehumanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehumanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehydrogenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehydrogenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehydrogenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehydrogenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehydrogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehydrogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehydrogenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehydrogenizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehydrogenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogeniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehydrogenizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehydrogeniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehypnotization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehypnotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehypnotizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehypnotization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dehypnotize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dehypnotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehypnotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehypnotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dehypnotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dehypnotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deindustrialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deindustrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deindustrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deindustrialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deindustrialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deindustrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deindustrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deindustrializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deindustrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deindustrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deionize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dekagram (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dekagram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dekagramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekagrams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dekagrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekagram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dekagramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dekaliter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dekaliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekalitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekaliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekalitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekaliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekalitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dekameter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dekameter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekametre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekameters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekametres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dekameter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dekametre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("delimitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "delimitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delimitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delimitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delimitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("delocalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "delocalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delocalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delocalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("delocalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "delocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delocalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "delocalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "delocalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deluster (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deluster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "delustre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagnetizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagnetizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagnetization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagnetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagnetize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagnetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagnetizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagnetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagnetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagnetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagogue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagogued", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagoged", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagoguing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagoging", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagogueri (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagogueri", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "demagogri", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demagogueris", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "demagogris", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demagoguery (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demagoguery", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "demagogry", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demasculinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demasculinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demasculinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demasculinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demasculinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demasculinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demasculinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demasculinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demasculinized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demasculinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demasculinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demasculinizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demasculinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demasculinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dematerialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dematerialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dematerializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dematerialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dematerialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dematerialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dematerialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dematerializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dematerializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dematerialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demeanor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demeanor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "demeanour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demeanors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "demeanours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demeanor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "demeanour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demilitarization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demilitarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demilitarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demilitarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demilitarize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demilitarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demilitarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demilitarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demilitarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demilitarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demiluster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demiluster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "demilustre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demineralization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demineralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demineralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demineralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demineralize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demineralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demineralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demineralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demineralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demineralizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demineralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demineraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demobilization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demobilize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demobilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demobilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demobilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demobilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demobilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("democratization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "democratization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "democratizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "democratization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("democratize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "democratize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "democratized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "democratizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "democratizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("democratizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "democratizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "democratiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demonetization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demonetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demonetize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demonetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demonian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demonian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "daemonian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demonization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demonize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demoralization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demoralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demoralize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demoralizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demoralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demoralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demoralizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demoralizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demoralisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demutualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demutualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demutualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demutualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demutualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demutualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demutualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demutualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demutualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demythologization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demythologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demythologizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demythologization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demythologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demythologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demythologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demythologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "demythologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("demythologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "demythologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "demythologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denationalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denationalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denaturalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denaturalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denaturalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denaturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denaturization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denaturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denaturize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denaturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denaturizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denaturizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denaturizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denaturiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denicotinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denicotinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denicotinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denizenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denizenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denizenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denizenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denizenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denominationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denominationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denominationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denominationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denominationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denormalize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denormalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denormalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dentalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dentin (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dentin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dentine", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dentines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dentin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dentine\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denuclearization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denuclearization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denuclearizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denuclearization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("denuclearize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "denuclearize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denuclearized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denuclearizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "denuclearizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "denuclearises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deodorization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deodorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deodorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deodorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deodorizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deodorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deodorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deodoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deoxidization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deoxidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deoxidize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deoxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deoxidizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deoxidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deoxygenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deoxygenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxygenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxygenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxygenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxygenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxygenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deoxygenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deoxygenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("departmentalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "departmentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("departmentalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "departmentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("departmentization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "departmentization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("departmentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "departmentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "departmentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "departmentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depauperization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depauperization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depauperisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depauperize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depauperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depauperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depauperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depauperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depauperizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depauperising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depauperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depauperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dependence (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dependence", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dependance", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dependences", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dependances", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dependence\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dependance\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dependent (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dependent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dependent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dependant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dependents", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dependants", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dependent\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dependant\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depersonalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depersonalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depersonalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depersonalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depersonalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depersonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depersonalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depersonalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depersonalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depersonalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depolarization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depolarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depolarize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depolarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depolarizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depolarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depoliticization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depoliticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depoliticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depoliticize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depoliticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depoliticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depoliticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depoliticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depoliticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depoliticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depoliticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depoliticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depolymerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depolymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depolymerize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depolymerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolymerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolymerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depolymerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depolymerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depressurization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depressurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depressurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depressurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("depressurize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "depressurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depressurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depressurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "depressurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "depressurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deputationize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deputationize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputationise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deputationizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputationises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deputization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deputization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deputize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deputize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deputized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deputizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deputizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deputises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deracialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deracialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deracialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deracialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deracialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deracializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deracialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deracializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deracialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("derationalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "derationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("derationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "derationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deratization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deratization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deratisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deratizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deratisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deratization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deratisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("derealization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "derealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("derecognize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "derecognize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derecognise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derecognized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derecognised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derecognizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derecognising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "derecognizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "derecognises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deregulationize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deregulationize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deregulationise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deregulationizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "deregulationises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dereligionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dereligionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dereligionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dereligionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dereligionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dereligionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dereligionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dereligionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dereligionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("derk (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "derk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "drek", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dermatorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dermatorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dermatorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Derr (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Derr", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Drer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Derr\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Drer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desacralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desacralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desacralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desacralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desacralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desacralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desacralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desacralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desacralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desalinization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desalinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desalinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desalinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desalinize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desalinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desalinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desalinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desalinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desalinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("descendant (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "descendant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "descendent", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "descendants", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "descendents", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "descendant\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "descendent\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "descendant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "descendent", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desensitization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desensitize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desensitizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desensitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desensitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desensitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desertization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desertization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desertisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desertizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desertisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desexualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desexualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desexualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desexualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desexualize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desexualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desexualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desexualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desexualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desexualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desilverization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desilverization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desilverizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desilverize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desilverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desilverized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desilverizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desilverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desilverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("despiritualization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "despiritualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "despiritualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("despiritualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "despiritualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "despiritualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("despotize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "despotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "despotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "despotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "despotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("destabilization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "destabilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("destabilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "destabilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destabilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destabilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destabilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("destabilizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "destabilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destabilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destabilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("destalinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "destalinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destalinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destalinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destalinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destalinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destalinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "destalinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destalinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desterilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desterilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desterilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("destigmatization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "destigmatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "destigmatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desulfurization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desulfurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desulfurize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desulfurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desulfurizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desulfurizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulfuriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulfurizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulfuriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desulphurizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desulphurizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphuriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desulphurizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desulphurisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desynchronization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desynchronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desynchronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desynchronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("desynchronize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "desynchronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desynchronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desynchronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "desynchronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "desynchronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("detribalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "detribalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "detribalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "detribalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("detribalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "detribalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "detribalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "detribalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "detribalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "detribalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("deva (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deva", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "daeva", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devalorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devalorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devalorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devalorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devalorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devalorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devalorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devalorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devalorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "develed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "develled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "develing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "develling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devil (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "deviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "devilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "deviling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "devilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devitalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devitalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devocalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devocalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devocalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devocalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devocalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devocalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devocalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devolatilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devolatilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devolatilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devolatilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("devolatilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "devolatilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devolatilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devolatilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "devolatilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "devolatilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dexterous (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dexterous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dextrous", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dexterously (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dexterously", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dextrously", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dexterousness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dexterousness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dextrousness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diabolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diabolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diabolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diabolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diabolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diabolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diabolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diabolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diabolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diabolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diagonalizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diagonalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diagonalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diagonalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diagonalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diagonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diagonalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diagonalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diagonalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diagonalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dial (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diallings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialecticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialecticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialecticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialecticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialecticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialler\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diallist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diallists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diallist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialogize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialogue (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogued", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogged", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialoguing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogging", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialog", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialogue", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("dialog box"), + comment: None, + }, + ], + notes: &[ + "Macquarie prefers dialogue (box) even for computing.", + ], + }, +Cluster { + header: Some("dialyzability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyzability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialyzable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialyzate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyzate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzate\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysate\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialyzation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyzation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialyze (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [dialysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dialyzer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dialyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dialyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dialyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diamondize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diamondize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diamondise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diamondizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diamondises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diarrhea (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diarrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diarrheal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diarrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrhealer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoealer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrhealest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoealest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diarrheic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diarrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrheicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrheicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diarrhetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diarrhetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diarrheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "diarrhoeticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dichotomization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dichotomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dichotomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dichotomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dichotomize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dichotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dichotomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dichotomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dichotomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dichotomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dickey (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dickey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dicky", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dickie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dickeys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dickies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dickey\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dicky\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dickie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diecious (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dioecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "diecious", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dieciously (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dioeciously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieciously", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diaene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dieretic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dieretic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diaeretic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dieselization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dieselization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dieselizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dieselization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dieselize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dieselize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dieselized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dieselizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dieselizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieselises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diestrous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diestrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diestrual (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diestrual", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestrual", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diestrum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diestrum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestrum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diestrus (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diestrus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestrus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diestruses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestruses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diestrus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioestrus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diethylstilbestrol (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diethylstilbestrol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diethylstilboestrol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diethylstilbestrol\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diethylstilboestrol\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dietitian (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dietitian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dietician", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dietitians", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dieticians", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dietitian\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dietician\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("differentialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "differentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "differentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "differentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "differentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("digitalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "digitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("digitalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "digitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("digitization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "digitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("digitize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "digitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("digitizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "digitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "digitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "digitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dike (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyke", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dykes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyke\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dyke", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dike", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dykes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dikes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dyke\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dike\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dimensionalization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dimensionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimensionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dimensionalize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dimensionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimensionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimensionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimensionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimensionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimensionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimensionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimensionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dimerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dimerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dimerize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dimerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dimerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dimerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diminutivize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diminutivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diminutivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diminutivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diminutivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dingoes (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dingoes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dingos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diopter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diopter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioptre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diopters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioptres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diopter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dioptre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diphthongization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diphthongization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diphthongizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diphthongization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diphthongize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diphthongize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diphthongized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diphthongizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diphthongizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diphthongises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diple (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diple", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diploe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diploe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diploae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diploe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diploae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diplomatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diplomatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diplomatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diplomatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diplomatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diplomatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diplomatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "diplomatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "diplomatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dis (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "diss", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dises", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "disses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dis\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "diss\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disangularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disangularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disangularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disangularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disangularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disauthorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disauthorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disauthorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disauthorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disauthorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disauthorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disauthorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disauthorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disauthorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disbowel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disboweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disbowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disboweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disbowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discanonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discanonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discanonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discanonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discanonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discanonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discanonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discanonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discanonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discanonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discanonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discanonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discolor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discoloreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discoloureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discoloured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "discolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discolorate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discolorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discolorated (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discolorated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discoloration (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolouration", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourations", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for coloration", + ], + }, +Cluster { + header: Some("discoloredness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discoloredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discolorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discolorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discolorment (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discolorment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolorments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "discolorment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "discolourment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discretization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discretization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discretisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("discretize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "discretize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "discretise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disdenominationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disdenominationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disdenominationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disdenominationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disdenominationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disdiplomatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disdiplomatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disdiplomatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disdiplomatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disdiplomatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disembowel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disemboweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disembowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disemboweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disembowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disequalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disequalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disequalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disequalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disequalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disequalize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disequalise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disequalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disequalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disequaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disequalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disequalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disfavor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disfavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disfavorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disfavorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disfavorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "disfavourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishabille (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishabille", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "deshabille", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishabilles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "deshabilles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishabille\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "deshabille\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disharmonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disharmonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disharmonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disharmonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disharmonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disharmonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disharmonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disharmonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disharmonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishevel (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disheveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dishevelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disheveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dishevelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disheveler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disheveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disheveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonorable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonorableness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourablenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonorably (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonorary (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonorary", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dishonourary", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishonorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishonorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishonorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishonourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishumanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dishumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dishumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dishumor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dishumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dishumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dishumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disillusionize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disillusionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disillusionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disillusionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disillusionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disillusionizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disillusionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusioniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disillusionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusionisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disillusionizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disillusioniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disindividualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disindividualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindividualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindividualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindividualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindividualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindividualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindividualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindividualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disindustrialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disindustrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindustrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disindustrialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disindustrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindustrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindustrializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disindustrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disindustrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disk (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "disc", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disk\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "disc\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disc", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "disk", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disc\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "disk\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + "Disk vs. disc is a mess, rather than sort it out I will just mark", + "each as a variant of each other.", + ], + }, +Cluster { + header: Some("disluster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disluster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dislustre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dismalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dismalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dismalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dismalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dismalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disnaturalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disnaturalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disnaturalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disnaturalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disnaturalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disnaturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disnaturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disnaturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disnaturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disnaturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disorganization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disorganize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disorganizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disorganizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disorganizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disorganiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disozonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disozonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disozonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disozonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disozonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dispapalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dispapalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispapalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispapalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispapalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dispatch (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dispatch", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "despatch", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispatched", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "despatched", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispatching", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "despatching", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispatches", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "despatches", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispatch\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "despatch\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dispauperize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dispauperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispauperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispauperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispauperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispauperizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispauperising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispauperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispauperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dispersonalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dispersonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispersonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispersonalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispersonalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dispopularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dispopularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispopularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dispopularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dispopularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disrealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disrealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disrealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disrealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disrealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disscepter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disscepter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dissceptre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disscepters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dissceptres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disscepter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dissceptre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disseize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disseize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disseise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disseised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disseising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disseises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disseizee (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disseizee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisee", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disseizin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disseizin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disseizor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disseizor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disseizor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "disseisor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissensualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissensualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissensualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dissensualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissensualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissocialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissocialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissocialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dissocialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissocialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dissocializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissocialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dissocializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissocialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissyllabize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissyllabize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissyllabise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissyllabized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissyllabized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissyllabised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissyllabizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissyllabizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissyllabising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dissympathize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dissympathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissympathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dissympathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dissympathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("distill (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "distill", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "distil", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "distilled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "distilling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "distills", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "distils", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("disutilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "disutilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disutilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "disutilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "disutilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ditsy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ditsy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ditzy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ditsier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ditzier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ditziness (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ditziness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ditsiness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ditzinesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ditsinesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ditziness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ditsiness\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("diversicolored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "diversicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "diversicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("divinister (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "divinister", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "divinistre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("divinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "divinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("divinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "divinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("divisionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "divisionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divisionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "divisionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "divisionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("djellaba (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "djellaba", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "djellabah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "djellabas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "djellabahes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "djellaba\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "djellabah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Docete (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Docete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Docetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Docete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Docetae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dockization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dockization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dockizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dockization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dockize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dockize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dockized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dockizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dockizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dockises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doctorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doctorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doctorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doctorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doctrinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doctrinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctrinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctrinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctrinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctrinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctrinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doctrinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doctrinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctrinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doctrinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "doctrinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("documentarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "documentarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "documentarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("documentarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "documentarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "documentarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "documentarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "documentarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("documentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "documentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "documentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "documentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Dodonean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Dodonean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Dodonaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Dodonean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Dodonaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doggone (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doggone", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doggoned", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doggoner", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doggoneder", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doggonest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doggonedest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doggy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doggy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doggie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doggy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doggie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dogie (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dogie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dogy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dogy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dogmatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dogmatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dogmatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dogmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dogmatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dogmatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dogmatizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dogmatiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dognap (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dognaped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dognapped", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dognaping", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dognapping", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("d\'oh (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "d\'oh", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doh", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "d\'ohs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dohs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "d\'oh\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "doh\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dollarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dollarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dollarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dollarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dollarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dolomitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dolomitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolomitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolomitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dolomitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dolomitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolomitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolomitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolomitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dolomitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dolor (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "dolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("domesticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "domesticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "domesticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "domesticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "domesticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "domesticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "domesticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "domesticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "domesticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("domine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "domine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dominae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dopey (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dopey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dopy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dora (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dora", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "doura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Doricize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Doricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Doricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Doricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Doricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Doricize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Doricise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doryline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doryline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dorylinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doughnut (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doughnut", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "donut", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doughnuts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "donuts", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doughnut\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "donut\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dowel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "doweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("doweler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "doweler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "doweller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("downdraft (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "downdraft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "downdraught", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "downdraft\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "downdraught\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("downward (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "downward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "downward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "downwards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Adverb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dracena (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dracena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dracaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dracenas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dracaenas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dracenaceae (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dracenaceae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dracaenaceae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draft (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draught", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("current"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drafts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("current"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draft\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draught\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("current"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drafts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draft\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draught", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drafted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughted", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drafting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughting", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drafts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughts", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("writing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draught", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: game of checkers"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draughts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: game of checkers"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draught\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: game of checkers"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftboard (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draughtboard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draftboard", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("british word"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draughtboards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "draftboards", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("british word"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftily (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftily", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtily", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftilier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtilier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftiliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtiliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftiness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftiness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtiness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftinesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtinesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftiness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtiness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftsman (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftsman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsman", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftsmen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsmen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftsman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsman\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draughtsman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: checker"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draughtsman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: checker"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draughtsmen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("british: checker"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftsmanship (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftsmanship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsmanship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftsmanships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsmanships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftsmanship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsmanship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftsperson (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftsperson", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtsperson", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("draftswoman (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "draftswoman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtswoman", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftswomen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtswomen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftswoman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtswoman\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("drafty (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "drafty", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughty", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "draftiest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "draughtiest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dragonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dragonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dragonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dragonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dragonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dragonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dragonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dragonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dragonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dramatizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dramatizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dramatization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dramatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dramatize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dramatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dramatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dramatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dramatizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dramatiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dreamed (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dreamed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "dreamt", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("drey (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "drier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dryer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "driest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dryest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dryer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "drier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("drivel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "driveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "drivelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "driveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "drivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("driveler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "driveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "driveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drivelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "drivellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "driveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "driveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("drought (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "drought", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "drouth", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "droughts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "drouthes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "drought\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "drouth\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("droughtiness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "droughtiness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "drouthiness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("droughty (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "droughty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "drouthy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("druggy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "druggy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "druggie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "druggie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "druggy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "druggies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "druggie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "druggy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dryly (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dryly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "drily", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dualization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ductilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ductilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ductilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ductilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ductilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("duel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dueled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dueling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "duelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dueler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dueler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dueller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "duelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dueler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dueller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("duelist (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "duelist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duellist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "duelists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duellists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "duelist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "duellist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("duer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "duer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "dure", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dullness (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dullness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dulness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dullnesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dulnesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dullness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dulness\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dumbfound (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dumbfound", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dumfound", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dumbfounded", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dumfounded", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dumbfounding", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dumfounding", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dumbfounds", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dumfounds", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dumbfoundingly (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dumbfoundingly", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dumfoundingly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dykey (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dykey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dikey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dykier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dikier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dykiest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "dikiest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("lesbian"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dynamize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dynamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dynamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dynamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dynamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dynamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dynamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dynamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "dynamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dysesthesia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dysesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dysesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dysesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dysmenorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dysmenorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysmenorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dysmenorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysmenorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dysmenorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysmenorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dysmenorrheal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dysmenorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysmenorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dysmenorrheic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dysmenorrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dysmenorrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dyspnea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dyspnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyspnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dyspneas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyspnoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "dyspnea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyspnoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dyspneal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dyspneal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyspnoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("dyspneic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "dyspneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "dyspnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("earlierize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "earlierize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "earlierise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "earlierized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "earlierised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "earlierizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "earlierising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "earlierizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "earlierises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("easternize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "easternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "easternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ebionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ebionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ebonization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ebonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ebonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ebonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ebonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ebonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ec (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ec", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aec", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecclesiasticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecclesiasticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecclesiasticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ecclesiasticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecclesiasticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("echoize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "echoize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "echoise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "echoized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "echoised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "echoizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "echoising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "echoizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "echoises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eclecticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eclecticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eclecticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eclecticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eclecticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oecoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("economization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "economization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("economize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "economize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("economizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "economizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "economizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "economiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecophobia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecophobia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oecophobia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecstasize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecstasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ecstasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ecstasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ecstasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecstaticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecstaticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstaticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ecstaticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ecstaticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ectethmoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ectethmoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ectoethmoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ectocelic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ectocelic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ectocoelic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecumenic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecumenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "oecumenic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecumenicalism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecumenicalism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "oecumenicalism", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecumenicity (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecumenicity", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "oecumenicity", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecumenism (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecumenism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "oecumenism", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ecus (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ecus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oecus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edema (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "edema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "edemas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oedemas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "edema\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oedema\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edematose (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "edematose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oedematose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edematous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "edematous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oedematous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Edenization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Edenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Edenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Edenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Edenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Edenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Edenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Edenize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Edenise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edicule (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "edicule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aedicule", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "edicule\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aedicule\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edile (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aedile", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "edile", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aediles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ediles", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aedile\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "edile\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("edility (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "edility", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aedility", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("editorialization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "editorialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("editorialize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "editorialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("editorializer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "editorializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "editorializer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "editorialiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eerie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eerie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "eery", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Eetion (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Eetion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Eaetion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Eetion\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Eaetion\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("effectualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "effectualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effectualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effectualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effectualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("effeminatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "effeminatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effeminatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("effeminization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "effeminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effeminization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("effeminize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "effeminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effeminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effeminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "effeminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "effeminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eger (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "egre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egilops (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egilops", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aegilops", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eglogue (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eglogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeglogue", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egoize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egoize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egoise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "egoizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egoises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egoizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egoizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egoiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "egoizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egoisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egophony (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egophony", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aegophony", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egotize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "egotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "egotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "egotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "egotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("egritude (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "egritude", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aegritude", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Egyptianization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Egyptianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Egyptianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Egyptianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptianizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptianising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Egyptize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Egyptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Egyptize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Egyptise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("elasticization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "elasticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("elasticize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "elasticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elasticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elasticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elasticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("elasticizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "elasticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elasticizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elasticisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electricalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electricalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electricalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electricalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electricalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electricize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electroanesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electroanesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electroanaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electroanesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electroanaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electroanesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electroanaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrocauterization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrocauterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrocauterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrocauterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrocauterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrocauterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrocauterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrodialyze (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrodialyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrodialyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrodialyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrodialyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrodialyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrodialyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrodialyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrodialyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrodialysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrodialyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrodialyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrogalvanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrogalvanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrogalvanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrogalvanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrogalvanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrohomeopathy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrohomeopathy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrohomoeopathy", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrohomeopathies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrohomoeopathies", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrohomeopathy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrohomoeopathy\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrolyzation (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrolyzation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolysation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrolyzation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolysation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrolyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrolyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrolyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrolyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrolyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electromagnetizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electromagnetizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electromagnetisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("electrotonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "electrotonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrotonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "electrotonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "electrotonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("elegize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "elegize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elegise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elegized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elegised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elegizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elegising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elegizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elegises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("elementalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "elementalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elementalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "elementalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "elementalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eleoblast (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eleoblast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeoblast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eleolite (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eleolite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeolite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eleomargaric (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eleomargaric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeomargaric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eleometer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eleometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eleoptene (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eleoptene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeoptene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eleoptene\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "elaeoptene\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Elizabethanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Elizabethanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Elizabethanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Elizabethanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Elizabethanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Elizabethanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Elizabethanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Elizabethville (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Elizabethville", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Elisabethville", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Elizabethville\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Elisabethville\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("embed (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "embed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embedded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbedded", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embedding", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbedding", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbeds", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" journalist"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" journalist"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embed\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" journalist"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("embedment (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "embedment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbedment", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "embedments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imbedments", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emblematicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emblematicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblematicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emblematization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emblematization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emblematize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emblematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emblemize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emblemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emblemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emblemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("embolization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "embolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "embolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("embowel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emboweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "embowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emboweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "embowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emir (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emir", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "amir", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ameer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emirs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "amirs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ameers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emir\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "amir\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ameer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emotionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emotionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emotionalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emotionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emotionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emotionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emotionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emotionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("empathize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "empathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empathized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empathised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empathizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empathising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emperize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emperizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emperising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("empestic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "empestic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "empaestic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emphasize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emphasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emphasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emphasizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emphasizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emphasizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emphasisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("employee (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "employee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "employe", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "employees", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "employes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "employee\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "employe\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emprise (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emprise", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "emprize", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emprises", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "emprizes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("empyreumatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "empyreumatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empyreumatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empyreumatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empyreumatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empyreumatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empyreumatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "empyreumatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "empyreumatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aemule", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emuled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aemuled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emuling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aemuling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emules", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aemules", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("emulsionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "emulsionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emulsionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emulsionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emulsionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emulsionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emulsionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "emulsionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "emulsionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enamel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enameled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "enamelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enameling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "enamelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "enamellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enameler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enameler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enameller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enamellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enameler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enameller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enamelist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enamelist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enamellist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamelists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enamellists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamelist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enamellist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enamor (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamoreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamoureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamoured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enamoredness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enamoredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamorednesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamourednesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamoredness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamouredness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enamorment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enamorment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamourment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamorments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamourments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enamorment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enamourment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enarbor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enarbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enarbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enarbors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enarbours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enarbor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enarbour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encarnalization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encarnalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "encarnalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encarnalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encarnalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "encarnalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encarnalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "encarnalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encarnalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "encarnalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encarnalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "encarnalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encephalocele (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encephalocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "encephalocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enclose (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enclose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inclose", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enclosed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inclosed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enclosing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inclosing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encloses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "incloses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enclosure (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enclosure", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "inclosure", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enclosures", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "inclosures", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enclosure\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "inclosure\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "encolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "encoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "encolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "encolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "encolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encrust (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encrust", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incrust", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encrusted", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incrusted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encrusting", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incrusting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encrusts", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incrusts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encumber (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encumber", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incumber", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encumbered", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incumbered", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encumbering", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incumbering", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encumbers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "incumbers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("encyclopedia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedia", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encyclopedias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedias", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encyclopedia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedia\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "ODE has encyclopEdia first, OED has encyclopAEdia first. Many", + "British will prefer the AE spelling. In the BNC the AE form is", + "slightly more common (around 6:5 ratio). Thus I\'m not sure how to", + "encode this.", + ], + }, +Cluster { + header: Some("encyclopediac (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopediac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaediac", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedial (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedial", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedian", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedic (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedical", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedically", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedism", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encyclopedisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedisms", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("encyclopedist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "encyclopedist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "encyclopedists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "encyclopaedists", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("endameba (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endameba", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "endamoeba", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endamebas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "endamoebas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endamebae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "endamoebae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endamebiasis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endamebiasis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "endamoebiasis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endamebic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endamebic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "endamoebic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endeavor (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endeavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endeavorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endeavorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endeavorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "endeavourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Enders (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Enders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Endres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endorse (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endorse", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorse", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endorsed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorsed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endorsing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorsing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endorses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endorsement (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endorsement", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorsement", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endorsements", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorsements", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endorsement\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indorsement\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("endue (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "endue", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indue", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endued", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indued", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enduing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "induing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "endues", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "indues", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eneid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eneid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeneid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("energization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "energization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("energize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "energize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "energized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "energizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "energizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("energizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "energizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "energizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "energizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "energiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Englishize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Englishize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Englishise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Englishizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Englishises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Englishize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Englishise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("engrandize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "engrandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "engrandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "engrandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "engrandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("engrandizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "engrandizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "engrandisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "engrandizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "engrandisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "engrandizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "engrandisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enharbor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enharbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enharbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enhemospore (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enhemospore", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enhaemospore", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enhypostatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enhypostatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enhypostatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enhypostatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enhypostatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enhypostatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enhypostatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enhypostatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enhypostatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enigmatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enigmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enigmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enigmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enigmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enigmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enigmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enigmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enigmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enjambment (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enjambment", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enjambement", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enjambments", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enjambements", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enjambment\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enjambement\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enocyte (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enocyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenocyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enolic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enolic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenolic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enologist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enomania (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enomania", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oenomania", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enroll (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enroll", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enrol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enrolls", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enrols", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enrollment (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enrollment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enrolment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enrollments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enrolments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enrollment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "enrolment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ensepulcher (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ensepulcher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensepulchre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ensepulcherred", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensepulchred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ensepulcherring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensepulchring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ensepulchers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensepulchres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ensepulcher\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensepulchre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ensorcel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ensorceled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensorcelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ensorcels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ensorcells", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entameba (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entameba", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entamoeba", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entamebas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entamoebas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entamebae (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entamebae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entamoebae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entamebic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entamebic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entamoebic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entender (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entender", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entendre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entenders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entendres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enterocele (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enterocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enterocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enteroceles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "enterocoeles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enthrall (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enthrall", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralls", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthrals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthrall", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inthrall", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("enslave"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inthralling", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("enslave"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inthralled", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("enslave"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthralls", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthrals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "inthralls", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("enslave"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enthrallment (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enthrallment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthralment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthrallments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthralments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthrallment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthralment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enthronization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enthronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("enthronize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "enthronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "enthronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "enthronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entomologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entomologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "entomologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entomologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "entomologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entomologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "entomologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entomologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "entomologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entre (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entre", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "entrae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entrench (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entrench", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrench", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrenched", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenched", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrenching", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenching", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrenches", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenches", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entrenchment (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entrenchment", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenchment", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrenchment\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenchment\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrenchments", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrenchments", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entrust (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entrust", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrust", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrusted", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrusted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrusting", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrusting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrusts", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrusts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("entrustment (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "entrustment", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrustment", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "entrustments", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "intrustments", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("envapor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "envapor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "envapour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "envapors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "envapours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "envapor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "envapour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("envenomization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "envenomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "envenomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eolic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eolic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeolic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eolipile (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eolipile", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeolipile", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eolipiles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeolipiles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eolipile\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeolipile\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eolotropic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eolotropic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeolotropic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eon (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "aeon\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("technical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("technical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("technical"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eonian (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eonian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeonian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eonism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eonism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeonism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eonisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeonisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eonism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeonism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Eopaleozoic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Eopaleozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Eopalaeozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Eopaleozoic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Eopalaeozoic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epaulet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epaulet", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "epaulette", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epaulets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "epaulettes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epaulet\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "epaulette\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epenetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epaenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ephete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ephete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ephetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epicele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epicele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epicoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epicenter (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epicenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epicentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epicentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicenter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epicentre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Epicurize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Epicurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Epicurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Epicurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Epicurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Epicurize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Epicurise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epicurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epicurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epicurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epicurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epicurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epidotization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epidotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epidotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epidotizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epidotisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epidotized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epidotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epidotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigeal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epigaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epigaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigeous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigeous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "epigaeous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigrammatization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigrammatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigrammatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigrammatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epigrammatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epigrammatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epigrammatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epigrammatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epigrammatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epigrammatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epilogize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epilogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epilogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epilogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epilogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epilogue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epilogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epilogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epilogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "epilog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epiloguize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epiloguize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiloguise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epiloguized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiloguised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epiloguizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiloguising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epiloguizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiloguises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epimerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epimerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epimerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epimerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epimerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epimerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epimerizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epimerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epimerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epinephrine (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epinephrine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "epinephrin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epinephrines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "epinephrins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epinephrine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "epinephrin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epiphanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epiphanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiphanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epiphanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epiphanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiphanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epiphanizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epiphanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epiphanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Episcopalianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Episcopalianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Episcopalianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Episcopalianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Episcopalianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Episcopalianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Episcopalianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("episcopize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "episcopize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "episcopise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "episcopized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "episcopised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "episcopizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "episcopising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "episcopizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "episcopises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epistolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epistolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epistolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epistolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epistolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epistolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epistolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epistolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epistolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epitaphize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epitaphize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitaphise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitaphizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitaphises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epithetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epithetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epithetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epithetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epithetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epitomization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epitomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epitomize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epitomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("epitomizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "epitomizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "epitomizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "epitomiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eq (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eq", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeq", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("equal (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "equaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "equalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "equalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("equalization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "equalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("equalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "equalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("equalizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "equalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("equestrianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "equestrianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equestrianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "equestrianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "equestrianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erbia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erbia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rebia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "erbias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rebias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ergotize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ergotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ergotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ergotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ergotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ergotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ergotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ergotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ergotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erke (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erke", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reke", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ern (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ern", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ren", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ernes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "renes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "erns", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rens", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ernest (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ernest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "renest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erogenesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erogenic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerogenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eros (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eros", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeros", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "erose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eroticization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eroticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eroticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eroticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eroticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eroticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eroticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eroticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eroticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eroticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eroticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eroticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erses (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ersh (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ersh", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "resh", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reshes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reshoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ert (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ert", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ret", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eruginous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eruginous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeruginous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erugo (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erugo", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerugo", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "erugos", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aerugos", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ervalenta (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ervalenta", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revalenta", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ervalentas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revalentas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erythrean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erythrean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "erythraean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("erythremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "erythremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "erythraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esc (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esc", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesc", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("escalades (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "escalades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "escaladoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("escalope (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "escalope", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "escollope", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "escalop", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "escalopes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "escollopes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "escalops", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "escalope\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "escollope\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "escalop\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eschynite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eschynite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeschynite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esculapian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esculapian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesculapian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esculetin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esculetin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesculetin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esculin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esculin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesculin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esculin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesculin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Eskimoized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Eskimoized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Eskimoised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Eskimoizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Eskimoiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Eskimoized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Eskimoised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esop (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esop", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aesop", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagismus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagismus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagismus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagitis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esophagus (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esophagus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esophagi", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "esophaguses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oesophagi", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "oesophaguses", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Essenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Essenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Essenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Essenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Essenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Essenize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Essenise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("essentialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "essentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "essentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "essentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "essentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esterization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "esterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "esterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "esterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esterize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "esterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "esterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthesiogen (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthesiogen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesiogen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esthesiogens", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesiogens", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthesiogenic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthesiogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesiogenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estheses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestheses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthetic (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "esthetic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aesthetic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "esthetic\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "aesthetics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "esthetics", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthetical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthetical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesthetical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthetically (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "aesthetically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "esthetically", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esthetician (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esthetician", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aesthetician", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estheticians", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestheticians", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "esthetician\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aesthetician\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estival (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estival", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestival", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estivate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estivate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivating", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivating", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estivation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estivation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aestivation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estivator (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estivator", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestivator", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estivator\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestivator\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estive (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estive", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestive", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estradiol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estradiol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestradiol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estradiols", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestradiols", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estradiol\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestradiol\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estral (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estriol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estriol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestriol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estriols", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestriols", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estriol\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestriol\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrogen (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrogen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oestrogen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrogens", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oestrogens", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrogen\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oestrogen\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrogenic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oestrogenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrone (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrone", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrone", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrones", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrones", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrone\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrone\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrous (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrual (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrual", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrual", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estruate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estruate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestruate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estruation (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estruation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestruation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estrus (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estrus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estruses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oestruses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "estrus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oestrus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estuate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estuate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestuate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estuous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estuous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestuous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("esture (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "esture", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aesture", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("estus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "estus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aestus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("et (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "et", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aet", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eternalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eternalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eternalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eternalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eternization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eternization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eternize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eternizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eternises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etheling (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etheling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aetheling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherealization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherealizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherealization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherealize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherealizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ethered (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ethered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aethered", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherializing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etheric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etheric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aetheric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etherizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etherizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etheriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etherisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etherizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etheriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ethicization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ethicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ethicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ethicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ethicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ethicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ethicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ethnicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ethnicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethnicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ethnicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ethnicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiogenic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiogenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiologically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiologically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiologically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiologist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etiologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiologue (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiologue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiologue", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiology (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etiology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiophyllin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiophyllin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiophyllin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiotropic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiotropic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiotropic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etiotropically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etiotropically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "aetiotropically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etymologizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etymologizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etymologization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etymologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("etymologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "etymologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etymologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etymologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "etymologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "etymologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemon (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eudemons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemons", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eudemonics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eudemonisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eudemonists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eudemonist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonistic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonistic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonistic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonistical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonistical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonistical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemonistically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemonistically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemonistically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eudemony (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eudemony", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eudaemony", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euhemerize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euhemerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euhemerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euhemerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euhemerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euhemerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euhemerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euhemerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euhemerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eulogization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eulogization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eulogize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eulogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eulogizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eulogizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eulogizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eulogiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eunuchize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eunuchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eunuchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eunuchized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eunuchised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eunuchizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eunuchising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eunuchizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eunuchises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphemization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphemization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphemize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphemizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphemizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphemizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphemiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphonization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("euphuize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "euphuize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphuise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphuized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphuised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphuizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphuising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "euphuizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "euphuises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eupnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eupnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "eupnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eupneas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "eupnoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eupnea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "eupnoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eupneic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eupneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "eupnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Europeanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Europeanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Europeanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Europeanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Europeanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Europeanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Europeanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Europeanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Europeanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Europeanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "europeanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "europeanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "europeanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "europeanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "europeanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "europeanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "europeanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "europeanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Euryale (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Euryale", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Euryalae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Euryale\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Euryalae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("evangelization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "evangelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("evangelize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "evangelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("evangelizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "evangelizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangeliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangelisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evangelizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evangeliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eventualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eventualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eventualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eventualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eventualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eventualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eventualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eventualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "eventualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("evil (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eviler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "eviller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evilest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "evillest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eviternal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eviternal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "aeviternal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("evolutionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "evolutionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evolutionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "evolutionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "evolutionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("excursionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "excursionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "excursionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "excursionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "excursionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "excursionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "excursionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "excursionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "excursionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exestuate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exestuate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "exaestuate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exhibitionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exhibitionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exhibitionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exhibitionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exhibitionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("existentialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "existentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "existentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "existentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "existentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exorcise (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exorcise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcize", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exorcised", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exorcising", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcizing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exorcises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcizes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exorcization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exorcization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exorcizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exorcizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exorcizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exorcizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exorcizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorcisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exorcizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exorciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("expediter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "expediter", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "expeditor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "expediters", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "expeditors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "expediter\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "expeditor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("experimentalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "experimentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "experimentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "experimentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "experimentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("experimentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "experimentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "experimentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "experimentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("expertize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "expertized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "expertised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "expertizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "expertising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exsiccate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exsiccate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "exsiccatae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extemporization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extemporization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extemporize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extemporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extemporizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extemporizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extemporizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "extemporiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extendable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extendable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "extendible", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exteriorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exteriorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exteriorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exteriorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("exteriorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "exteriorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exteriorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exteriorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "exteriorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "exteriorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("externalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "externalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "externalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "externalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("externalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "externalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "externalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "externalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "externalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "externalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extol (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extoll", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extols", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extolls", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("extrovert (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "extrovert", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extravert", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extroverted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extraverted", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extroverts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extraverts", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "extrovert\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "extravert\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "extravert is marked as a \"chiefly Psychology\" variant", + ], + }, +Cluster { + header: Some("eying (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eyeing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "eying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fabulize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fabulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fabulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fabulized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fabulised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fabulizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fabulising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fabulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fabulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("facsimilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "facsimilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "facsimilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "facsimilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "facsimilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("factorization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "factorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "factorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "factorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("factorize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "factorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "factorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "factorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "factorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "factorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("faence (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faence", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faoence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faence\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faoence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("faerie (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faerie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "faery", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faerie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "faery\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fagot (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faggot", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faggots", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faggot\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagot", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggot", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagots", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggots", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagot\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggot\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagot", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggot", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagots", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggots", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagoted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggoted", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fagoting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faggoting", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: Some("bundle"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("faitor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faitor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faitour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faitors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faitours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("falafel (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "falafel", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "felafel", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "falafel\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "felafel\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("familiarization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "familiarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("familiarize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "familiarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("familiarizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "familiarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "familiarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("familiarizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "familiarizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "familiarisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fanaticize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fanaticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fanaticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fanaticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fanaticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fanaticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fanaticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fanaticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fanaticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fantasize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fantasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fantasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fantasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fantasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fantasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fantasizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fantasizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fantasiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fantasy (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fantasy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantasy", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantasied", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantasying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantasies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fantasy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantasy\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "phantasy marked as archaic or Psych. var. of fantasy by Ox (all versions)", + ], + }, +Cluster { + header: Some("faradization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faradization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("faradize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faradize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("faradizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "faradizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "faradizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "faradiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fasciole (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fasciole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fasciolae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fascisticization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fascisticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascisticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascisticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascisticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascisticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascisticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fascisticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fascisticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascisticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascisticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascisticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fascistization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fascistization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascistizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascistization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fascistize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fascistize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascistized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascistizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fascistizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fascistises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fashionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fashionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fashionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fashionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fashionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fatalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fatalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fatalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fatalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fatalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favor (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favoureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favoured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorable (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorableness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourablenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorably (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favoredly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favoredly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouredly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoredlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouredlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoredliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouredliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favoredness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favoredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorednesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourednesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoredness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouredness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favoress (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favoress", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouress", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favoringly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favoringly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouringly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoringlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouringlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoringliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouringliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorite (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoriter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouriter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoritest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouritest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favoritism (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favoritism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouritism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoritisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouritisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favoritism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favouritism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "favorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("favorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "favorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "favourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fayer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fayer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fayre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fecal (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fecal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faecal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fecalith (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fecalith", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faecalith", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feces (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feces", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faeces", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feces\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "faeces\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fecula (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fecula", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faecula", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feculence (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feculence", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "faeculence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Fecunditatis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Fecunditatis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Foecunditatis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fecunditatis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Foecunditatis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fecundize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fecundize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fecundise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fecundizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fecundises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fedarie (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fedarie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foedarie", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fedaries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foedaries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("federalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "federalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "federalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "federalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("federalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "federalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "federalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "federalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "federalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "federalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Fedor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Fedor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Faedor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fedor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Faedor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "feres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("femalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "femalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "femalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "femalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "femalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feminization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feminizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feminization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feminize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("femtometer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "femtometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "femtometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feralized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ferd (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ferd", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ferie (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ferie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "feriae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ferity (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ferity", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "freity", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ferneau (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ferneau", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Freneau", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ferneau\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Freneau\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ferrel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ferreled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ferrelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ferreling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ferrelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ferritization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ferritization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ferritisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ferritizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ferritisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ferritization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ferritisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilizational (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizationaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisationaler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizationalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisationalest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizationals", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisationals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizational\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisational\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fertilizer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fertilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fertilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fertiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fervor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fervor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "fervour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fervors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "fervours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fervor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "fervour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fervorless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fervorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "fervourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fervorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fervorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "fervourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetal (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetal", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetalism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetalism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetalism", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetation", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetation\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetichize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetichize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetichise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetichized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetichised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetichizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetichising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetichizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetichises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feticidal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feticidal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foeticidal", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feticide (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feticide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foeticide", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feticides", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foeticides", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feticide\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foeticide\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetid (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetid", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetider", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetider", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetidest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetidest", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetiferous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetiferous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetiferous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetiparous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetiparous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetiparous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetish (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetich", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetiches", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetish\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetich\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetishization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetishization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetishize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetishize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetishizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fetishises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetoscopy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetoscopy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetoscopy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetoscopies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foetoscopies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feture (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feture", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foeture", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fetus (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fetus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetus", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetuses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetuses", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fetus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foetus\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "foetus marked as British-only variant for \"non-technical use\" by Ox", + ], + }, +Cluster { + header: Some("feudalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feudalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feudalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feudalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feudalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feudalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "feudalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "feudalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("feuter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "feuter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "feutre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiber (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fibers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberboard (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberboard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreboard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberboards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreboards", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberboard\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreboard\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fibered (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fibered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberfill (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberfill", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrefill", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberfills", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrefills", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberfill\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrefill\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberglass (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberglass", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreglass", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberglasses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreglasses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberglass\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreglass\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrizer", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrizers", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrelesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrelessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrelesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberscope (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberscope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrescope", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiberscopes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibrescopes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiberware (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiberware", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fibreware", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fictionalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fictionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fictionalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fictionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fictionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fictionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fictionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fictionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fictionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fictionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("figurize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "figurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "figurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "figurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "figurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("filet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "filet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fillet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "filet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fillets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "filets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fillet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "filet\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fillet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "filet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "filleted", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fileted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "filleting", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fileting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fillets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "filets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("filmize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "filmize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "filmise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "filmizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "filmises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("filterable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "filterable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "filtrable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("finalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "finalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "finalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "finalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("finalize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "finalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "finalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "finalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "finalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "finalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Finlandization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Finlandization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Finlandisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Finlandizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Finlandisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiscalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiscalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fiscalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiscalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fiscalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiscalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fiscalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fiscalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fiscalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fiscalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fiscalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fiscalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fjord (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fjord", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fiord", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fjords", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fiords", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fjord\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fiord\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flamboyantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flamboyantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "flamboyantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flamboyantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "flamboyantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flannel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flanneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "flannelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flanneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "flannelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flannelette (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flannelette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "flannelet", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flannelette\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "flannelet\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavor (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavoring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorful (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorfuler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourfuler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorfulest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourfulest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorfully (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorfully", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourfully", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorfullier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourfullier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorfulliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourfulliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorless (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "flavourous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavorsome (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavorsome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavoursome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorsomer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavoursomer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorsomest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavoursomest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flavory (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flavory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavoury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavorier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavourier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flavoriest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flavouriest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fledgling (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fledgling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fledgeling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fledglings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fledgelings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fledgling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fledgeling\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Fletcherize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Fletcherize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Fletcherizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Fletcherising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flextime (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flextime", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flexitime", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flextimes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flexitimes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flextime\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flexitime\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flier (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "flyer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fliers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "flyers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "flyer\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("floozy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "floozy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "floozie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "floozy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "floozie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("floralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "floralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "floralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "floralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "floralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("floramor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "floramor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "floramour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flotation (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flotation", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "floatation", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flotations", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "floatations", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flotation\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "floatation\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluidization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluidize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluidizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluky (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flukey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flunky (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flunky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flunkie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flunkey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flunkies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flunkeys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flunky\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "flunkey\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "flunkie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluoridization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluoridization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluoridizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluoridization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fluoridize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fluoridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluoridized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluoridizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fluoridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fluoridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("flutist (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "flutist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "flautist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flutist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "flautist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "flutists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "flautists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("focalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "focalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("focalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "focalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "focalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("focus (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "focused", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "focussed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "focusing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "focussing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fogy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fogy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fogey", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fogies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fogeys", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fogy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fogey\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fondue (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fondue", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fondu", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fondues", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fondus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fondue\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fondu\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fontanel (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fontanel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fontanelle", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fontanels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fontanelles", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fontanel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fontanelle\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foolhardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foolhardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foolhardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foolhardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foolhardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foolhardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foolhardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foolhardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foolhardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forb (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forb", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fourb", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forche (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forche", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fourche", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forecastle (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forecastle", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fo\'c\'sle", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fo\'c\'s\'le", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forecastles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fo\'c\'sles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fo\'c\'s\'les", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forecastle\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fo\'c\'sle\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fo\'c\'s\'le\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foreignization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foreignization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreignisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foreignizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreignisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foreignization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreignisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foreignize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foreignize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreignise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foreignizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreignises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forejudgment (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forejudgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "forejudgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forejudgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "forejudgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forejudgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "forejudgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foreprize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foreprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "foreprise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forgather (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forgather", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "foregather", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgathered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "foregathered", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgathering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "foregathering", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgathers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "foregathers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forgo (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forgo", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "forego", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forwent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "forewent", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgone", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foregone", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgoing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foregoing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forgoes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "foregoes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forego", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forewent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foregone", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foregoing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "foregoes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formalizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formalization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forme (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "formae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formicide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formicide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "formicidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formularization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formularize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formularizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formularisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formulas (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formulas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulae", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("for other uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "formulae", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("for some uses"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formulization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formulization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formulize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("formulizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "formulizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formuliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "formulizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "formuliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forswear (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forswear", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foreswear", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forswore", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foreswore", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forsworn", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foresworn", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forswearing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foreswearing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forswears", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foreswears", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forsworn", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "foresworn", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("forumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "forumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "forumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "forumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "forumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fosse (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fosse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fossae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fossiled (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fossiled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fossilizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fossilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fossilization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fossilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fossilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fossilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fossilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fossilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fossule (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fossule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fossulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foulder (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foulder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fouldre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fouter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fouter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foutre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fouters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foutres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("foveole (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "foveole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "foveolae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fractionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fractionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fractionalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fractionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fractionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fractionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fractionize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fractionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fractionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fractionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fragmentization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fragmentization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fragmentization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fragmentize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fragmentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fragmentized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fragmentizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fragmentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fragmentizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fragmentizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fragmentiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frambesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frambesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "framboesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frambesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "framboesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frambesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "framboesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Francize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Francize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Francise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Francizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Francises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Francize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Francise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Franklinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Franklinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Franklinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Franklinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Franklinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Franklinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Franklinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fraternization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fraternization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fraternize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fraternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fraternizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fraternizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraterniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraternisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fraternizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fraterniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("freebie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "freebie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "freebee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "freebies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "freebees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "freebie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "freebee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frena (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Frenchize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Frenchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Frenchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Frenchizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Frenchises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Frenchize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Frenchise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frenetic (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frenetic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "phrenetic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frenular (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frenular", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenular", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frenulum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frenulum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenulum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frenula", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenula", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frenulum\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenulum\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frenum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frenum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frenums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frenum\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fraenum\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("friborg (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "friborg", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fribourg", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frictionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frictionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frictionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frictionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frictionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frivol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frivoled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "frivolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frivoling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "frivolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frivoler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frivoler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "frivoller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frivolers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "frivollers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frivoler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "frivoller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frizado (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frizado", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frisado", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frizette (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frizette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frisette", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frizettes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frisettes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frizette\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "frisette\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frizz (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frizz", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "friz", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frizz\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "friz\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("frowzy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "frowzy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "frowsy", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frowzier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "frowsier", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "frowziest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "frowsiest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fryer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fryer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "frier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fryers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "friers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fryer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "frier\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fuehrer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fuehrer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "f�hrer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuehrers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "f�hrers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuehrer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "f�hrer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fuel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fueled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fuelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fueling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fuelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fueler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fueler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fueller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fuellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fueler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fueller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fuelizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fuelizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fueliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuelizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuelisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuelizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fueliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fulfill (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fulfill", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fulfil", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fulfills", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "fulfils", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fulfillment (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fulfillment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fulfilment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fulfillments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fulfilments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fulfillment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fulfilment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "According to Macquarie, \"to fulfill\" is an acceptable variant, but fulfillment is not. (probably similar to install vs instalment in en-GB)", + ], + }, +Cluster { + header: Some("fulgor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fulgor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fulgour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fulgors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fulgours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fulgorous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fulgorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "fulgourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fullness (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fullness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fulness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fullnesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fulnesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fullness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fulness\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("functionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "functionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "functionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "functionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "functionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("functionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "functionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "functionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "functionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "functionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("funeralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "funeralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "funeralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "funeralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "funeralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("funnel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "funneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "funnelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "funneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "funnelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("funneler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "funneler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "funneller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("furor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "furor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "furore", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "furors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "furores", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "furor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "furore\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("furcule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "furcule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "furculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Furie (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Furie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Furiae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Furie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Furiae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fuse (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fuse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuze", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detonating device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fused", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuzed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detonating device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fusing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuzing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detonating device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuzes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detonating device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuse\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "fuze\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detonating device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fused", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fusing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fuse\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fusilier (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fusilier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fusileer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fusiliers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fusileers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fusilier\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "fusileer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("fustianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "fustianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fustianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fustianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fustianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fustianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fustianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "fustianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "fustianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("futilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "futilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "futilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "futilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "futilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("futurize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "futurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "futurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "futurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "futurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gabardine (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gabardine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gabardines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gabardine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaberdine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gabardine", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaberdines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gabardines", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaberdine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gabardine\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gaelicization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gaelicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gaelicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gaelicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gaelicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gaelicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gaelicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gaelicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gaelicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaelicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaelicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaelicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaelicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaelicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaelicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaelicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaelicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galactorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galactorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "galactorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galactorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "galactorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galactosemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galactosemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "galactosaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galactosemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "galactosaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galee (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "galeae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gallantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gallantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galliardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galliardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galliardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gallicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gallicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gallicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gallicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gallicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gallicizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gallicizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Galliciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gallicizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Galliciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gallisize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gallisize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallisise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallisized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallisised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallisizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallisising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallisizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallisises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gallize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gallize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gallizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gallises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galosh (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galosh", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "galoshe", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galosh\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "galoshe\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galvanization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galvanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galvanize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galvanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("galvanizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "galvanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "galvanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "galvaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gambades (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gambades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gambadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gambol (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gamboled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gambolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gamboling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gambolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gamy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gamy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gamey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gargarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gargarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gargarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gargarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gargarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gargarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gargarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gargarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gargarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("garrote (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "garrote", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "garotte", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garrotte", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garote", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "garroted", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "garotted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garrotted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garoted", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "garroting", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "garrotting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garotting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garoting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "garrotes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "garottes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garrottes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garotes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "garrote\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "garotte\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garrotte\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "garote\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("garruline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "garruline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "garrulinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gas (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gasses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gasoline (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gasoline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gasolene", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gasolines", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gasolenes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gasoline\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gasolene\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gastrea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gastrea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gastraea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gastreas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gastraeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gastrocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gastrocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gastrocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gaufer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gaufer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gaufre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaufers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gaufres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gauffer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gauffer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gauffre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gauge (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gauge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gage", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gauge\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gage\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gauged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaged", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gauging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaging", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gauges", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gages", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("archaic; nautical, historical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gage\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("archaic; nautical, historical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("archaic; nautical, historical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("archaic; nautical, historical"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gages", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("archaic; nautical, historical"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gavel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gaveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gavelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gavelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gaveler (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gaveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gaveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gayety (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gaiety", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gayety", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gaiety\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gayety\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gayly (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gaily", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gayly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatine", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatine\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatinizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatinizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatinizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatinizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelatinizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelatinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatiniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatinisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gelatinizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gelatiniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gelofer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gelofer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gelofre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gemology (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gemology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gemmology", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gemologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gemmologies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gemology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gemmology\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("genealogize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "genealogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genealogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genealogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genealogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genealogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genealogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genealogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genealogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalizational (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("generalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "generalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "generalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "generaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("genialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "genialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("genteelize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "genteelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genteelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genteelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genteelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genteelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genteelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "genteelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "genteelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gentilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gentilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gentilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gentilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gentlemanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gentlemanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentlemanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gentlemanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gentlemanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geodesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geodesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "geodaesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geometricize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geometricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geometricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geometrization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geometrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geometrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geometrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geometrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geometrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geometrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "geometrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "geometrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ger (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gerenuk (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gerenuk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "greenuk", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Germanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Germanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Germanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Germanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Germanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Germanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Germanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Germanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Germanizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Germanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Germanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Germaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "germanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "germanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gerne (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gerne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ges (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ges", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gessed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gessed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gessoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gesses (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gessoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("geste (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "geste", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gestae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Getae (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Getae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Getae\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Getz (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Getz", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetz", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Getz\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetz\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Getzville (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Getzville", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetzville", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Getzville\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goetzville\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gewgaw (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gewgaw", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "geegaw", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gewgaws", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "geegaws", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gewgaw\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "geegaw\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gey (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goey", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gheber (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gheber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ghebre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ghebers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ghebres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gheber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ghebre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ghettoization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ghettoization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ghettoizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ghettoization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ghettoize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ghettoize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ghettoized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ghettoizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ghettoizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ghettoises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("giantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "giantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "giantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "giantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "giantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gimbal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gimbaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gimballed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gimbaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gimballing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ginkgo (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ginkgo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gingko", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ginkgoes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ginkgos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gingkos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "gingkoes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ginkgo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gingko\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("girly (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "girly", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "girlie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gizmo (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gizmo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gismo", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gizmos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gismos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gizmo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gismo\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glacialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glacialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glacialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glacializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glacialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourization", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "glamorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourize", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glamorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glamorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourizing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glamorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourizes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glamorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourizer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "glamoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourizers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "glamorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourizer\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "glamoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "glamourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorous (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamorousness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamorousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourousness", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamorousness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "glamourousness\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glamour (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glamour", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "glamor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamours", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "glamors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamour\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "glamor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamoured", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "glamored", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glamouring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "glamoring", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glauconitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glauconitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glauconitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glauconitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glauconitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glebe (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glebe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glebae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("globalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "globalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "globalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "globalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("globalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "globalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "globalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "globalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "globalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "globalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("globigerine (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "globigerine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "globigerinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glottalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glottalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glottalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glottalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glottalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glottalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glottalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glottalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glottalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glottalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glucemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glucemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glucaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glucosemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glucosemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glucosaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gluing (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gluing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "glueing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gluteal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gluteal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "glutaeal", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "OED has glutaeal listed first, ODE doesn\'t recognize glutaeal", + ], + }, +Cluster { + header: Some("gluteus (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gluteus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glutaeus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glutei", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glutaei", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gluttonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gluttonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gluttonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gluttonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gluttonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gluttonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gluttonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gluttonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gluttonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glycaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glycaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycerin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycerin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerine", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glycerins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glycerin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerine\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycerinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycerinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glycerinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycerolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycerolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glycerolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycerolized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycerolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycerolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycogenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "glycogenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "glycogenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycohemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycohemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glycohaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("glycosemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "glycosemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "glycosaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gnosticize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gnosticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gnosticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gnosticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gnosticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gnosticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gnosticizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gnosticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gnosticizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gnosticiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gnosticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gnosticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gnosticizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gnosticisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gobbledygook (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gobbledygook", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gobbledegook", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gobbledygooks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gobbledegooks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gobbledygook\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gobbledegook\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goddamn (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goddamn", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "goddam", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goddamned", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "goddamed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goddamning", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "goddaming", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goddamns", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "goddams", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goddamn\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "goddam\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goddize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goddize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goddise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goddizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goddises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goiter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goiter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goiters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goiter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gole (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gole", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goloe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goliathize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goliathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goliathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goliathized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goliathised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goliathizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goliathising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goliathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "goliathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goloshes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goloshes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goloshoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gonorrhea (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gonorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gonorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gonorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gonorrheal (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gonorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gonorrhealer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoealer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gonorrhealest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoealest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gonorrheic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gonorrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gonorrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goodbye (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goodbye", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "goodby", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goodbyes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "goodbys", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goodbye\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "goodby\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goody (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goody", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "goodie", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goodies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "goody\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "goodie\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gora (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gora", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gora\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goura\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gora", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "goura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("goramies (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "goramies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gouramies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gorgonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gorgonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gorgonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gorgonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gorgonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gorgonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gorgonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gorgonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gorgonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gormandism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gormandism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gormandize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gormandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gormandizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gormandizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gormandizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gormandiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gospeler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gospeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gospeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gospellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gospeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gospelize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gospelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gospellize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gospellize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospellise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospellized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospellised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospellizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospellising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gospellizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gospellises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gothicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gothicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gothicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gothicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gothicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gothicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gothicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gothicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gothicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gothicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gothicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gothicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gothicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gothicizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gothicizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothiciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gothicizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothicisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gothicizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Gothiciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gourmandize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gourmandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gourmandized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gourmandizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gourmandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gourmandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("governmentalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "governmentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "governmentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "governmentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "governmentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "governmentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "governmentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "governmentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "governmentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Goyesque (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Goyesque", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Goyaesque", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Graecize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Graecize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Graecized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Graecizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Graecizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecise\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecised", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecised\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecising", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecising\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Graecising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Grecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Grecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Grecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grecize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grecized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grecizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grecizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grecises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grammaticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grammaticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grammaticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grammaticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grammaticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grammaticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grammaticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grammaticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grammaticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grams (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("unit of mass"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("unit of mass"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "grammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("unit of mass"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("chickpeas"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("chickpeas"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("chickpeas"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granddad (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granddad", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "grandad", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granddads", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "grandads", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granddad\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "grandad\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grangerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grangerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grangerize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grangerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grangerizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grangerizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangeriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangerisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grangerizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grangeriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granny (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granny", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "grannie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granny\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "grannie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granulitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granulitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granulitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granulitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granulitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("granulize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "granulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "granulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "granulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("graphic (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "graphic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "graphical", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphical", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: Some("graphical user interface"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("graphitizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "graphitizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("graphitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "graphitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("graphitize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "graphitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graphitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "graphitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gravel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "graveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gravelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gravelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gray (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gray", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "grey", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grayed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "greyed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grayer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "greyer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grayest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "greyest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "graying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "greying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grays", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "greys", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gray\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "grey\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gray", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("physical unit"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grays", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("physical unit"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grayish (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grayish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "greyish", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grayness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grayness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "greyness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grayness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "greyness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grecian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grecian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "graecian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Grecianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Grecianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Grecianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Grecianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Grecism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Grecism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Graecism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Graecisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Grecism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Graecism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grecism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "graecism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Greekize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Greekize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Greekise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Greekizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Greekises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Greekize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Greekise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("greisenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "greisenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "greisenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("greisenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "greisenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "greisenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "greisenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "greisenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "greisenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("griffon (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "griffon", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "griffons", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "griffon\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "griffin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "griffon", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gryphon", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("animal"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "griffins", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "griffons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gryphons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("animal"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "griffin\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "griffon\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gryphon\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("animal"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grizard (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grizard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grisard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "grises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("groin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "groin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "groyne", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wall"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "groyne\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wall"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "groynes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wall"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("body part"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("body part"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("body part"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grovel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "groveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "grovelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "grovelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("groveler (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "groveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "groveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grovelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grovellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "groveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "groveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grovelingly (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grovelingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grovellingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grovelinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grovellinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grovelingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grovellingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gruel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grueled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gruelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grueling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gruelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gruelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gruellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grueling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gruelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("grueler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "grueler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grueller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gruelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gruellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "grueler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "grueller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gruelingly (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gruelingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gruellingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Gueber (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Gueber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Guebre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Guebers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Guebres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Gueber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Guebre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("guerrilla (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "guerrilla", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "guerilla", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "guerrillas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "guerillas", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "guerrilla\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "guerilla\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("guizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "guizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "guiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "guizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "guisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gully (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gully", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gulley", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("trench"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gully\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gulley\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("trench"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gullies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gulleys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("trench"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gunnel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gunnel", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gunnels", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gunnel\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gunwale", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gunnel", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gunwales", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gunnels", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gunwale\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gunnel\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gutte (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gutte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "guttae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("guttule (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "guttule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "guttulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gutturalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gutturalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gutturalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gutturalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gutturalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gutturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gutturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gutturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gutturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gutturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyne (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "gynae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecocracy (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecocracy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocracy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocracies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocracies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocracy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocracy\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecocrat (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecocrat", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocrat", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocrats", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocrats", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocrat\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocrat\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecocratic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecocratic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocratic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocraticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocraticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecocraticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecocraticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecoid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecol (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecologic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecological (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologicaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologicaler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologicalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologicalest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologicals", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologicals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecological\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecological\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecologist (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecology (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecomastia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecomastia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomastia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecomastias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomastias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecomastia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomastia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecomasty (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecomasty", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomasty", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gynecomasty\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomasty\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynecomorphous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynecomorphous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaecomorphous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyneconitis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyneconitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaeconitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyneocracy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyneocracy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaeocracy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyneolater (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyneolater", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaeolater", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyneolatry (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyneolatry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynaeolatry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gynomonecious (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gynomonecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gynomonoecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gypsy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gypsy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gipsy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gypsies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gipsies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gypsy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "gipsy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyrostabilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyrostabilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gyrostabilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gyrostabilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gyrostabilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("gyrostabilizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "gyrostabilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gyrostabiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gyrostabilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gyrostabilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gyrostabilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "gyrostabiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ha (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ha", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hah", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ha", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("habitualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "habitualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "habitualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "habitualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "habitualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hairdryer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hairdryer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hairdrier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hairdryers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hairdriers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hairdryer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hairdrier\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hajj (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hajj", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadj", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hajj\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadj\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hajji", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadji", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hajjis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadjis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hajji\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadji\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hajjs (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hajjs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hadjs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("halloo (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "halloo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hallo", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "hollo", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hallooing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "halloing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "holloing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "halloos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hollos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "hallos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "halloo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hallo\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "hollo\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hamletization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hamletization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hamletisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hamletizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hamletisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hamletization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hamletisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hamletize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hamletize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hamletise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hamletizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hamletises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("handsel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "handseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "handselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "handseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "handselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hankie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hankie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hanky", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hankie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hanky\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hanoverianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hanoverianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hanoverianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hanoverianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hanoverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hanoverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hanoverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hanoverize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hanoverise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hansardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hansardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hansardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hansardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hansardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hansardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hansardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hansardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hansardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hansel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hanseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hanselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hanseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hanselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harbor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harbors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harbor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborage (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborages", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourages", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborage\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourage\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborful (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harborlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "harbourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborside (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborside", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourside", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harborward (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harborward", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "harbourward", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harmonizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harmonizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harmonization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harmonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harmonize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harmonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("harmonizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "harmonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "harmonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "harmoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Harmothoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Harmothoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Harmothoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Harmothoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Harmothoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Harvardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Harvardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harvardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Harvardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harvardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Harvardize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harvardise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Harveyize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Harveyize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harveyise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Harveyizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harveyises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Harveyize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Harveyise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hashish (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hashish", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hasheesh", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "haschisch", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hashish\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hasheesh\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "haschisch\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hasidean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hasidean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hasidaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hasidean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hasidaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hasmonean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hasmonean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hasmonaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hasmoneans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hasmonaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hatchel (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hatcheled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hatchelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hatcheling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hatchelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hattize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hattize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hattise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hattizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hattises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hattize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hattise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("haussmannization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "haussmannization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "haussmannizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("haussmannize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "haussmannize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "haussmannized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "haussmannizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "haussmannizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "haussmannises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("havior (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "havior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "haviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "haviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "haviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("haviored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "haviored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "havioured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hazardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hazardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hazardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hazardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hazardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heathenization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heathenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heathenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heathenize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heathenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heathenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heathenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heathenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heathenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heathenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heathenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heathenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heavenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heavenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heavenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heavenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heavenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hebraicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hebraicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hebraization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hebraization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hebraize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hebraize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hebraizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hebraises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hebraizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hebraizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hebraizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hebraiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hecatean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hecatean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hecataean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hecatean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hecataean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hectogram (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hectogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hectogramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectograms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hectogrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectogram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hectogramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hectoliter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hectoliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectolitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectoliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectolitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectoliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectolitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hectometer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hectometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectometres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hectometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hectometre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "haed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hegelianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hegelianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hegelianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hegelianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hegelianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hegelianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hegelianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hekatean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hekatean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hekataean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hekatean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Hekataean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "heloe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("helled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "helled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "helloed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hellenization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hellenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hellenize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hellenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hellenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hellenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hellenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hellenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hellenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hellenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hellenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hellenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hellenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hellenizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hellenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Helleniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hellenizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Helleniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemachrome (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemachrome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemachrome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemachrome\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemachrome\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemacytometer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemacytometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemacytometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemacytometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemacytometer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemad (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemad", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "haemad", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemagglutinate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemagglutinate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutinate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemagglutinated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutinated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemagglutinating", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutinating", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemagglutination (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemagglutination", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutination", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemagglutination\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutination\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemagglutinative (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemagglutinative", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutinative", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemagglutinin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemagglutinin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagglutinin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemagogue (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemagogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemagogue", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemameba (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemameba", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hemamoeba", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemangioma (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemangioma", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemangioma", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemangiomas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemangiomas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemangioma\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemangioma\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemangiomata (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemangiomata", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemangiomata", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemangiomatosis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemangiomatosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemangiomatosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemapophysis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemapophysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemapophysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemaspectroscope (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemaspectroscope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemaspectroscope", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematein (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematein", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematein", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematein\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematein\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematemesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematemesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematemesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematherm (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematherm", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematherm", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemathermal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemathermal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemathermal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemathermous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemathermous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemathermous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematinic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematinic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematinic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematinics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematinics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematinic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematinic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematite (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematitic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematitic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematitic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoblast (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoblast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoblast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematoblasts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoblasts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematoblast\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoblast\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematobranchiate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematobranchiate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematobranchiate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocele (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematocele\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocele\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocrit (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocrit", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocrit", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematocrits", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocrits", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematocrit\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocrit\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocryal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocryal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocryal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocyst (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocyst", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocyst", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematocyst\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocyst\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocystis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocystis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocystis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematocyte (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematocyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematocyte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematocyte\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematogenesis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematogeneses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematogeneses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematogenesis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematogenesis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematogenous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematogenous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematogenous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoidin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoidin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoidin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematologic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematological (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematologist (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematology (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematolysis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematolysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematolysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoma (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoma", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoma", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematomas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematomas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematoma\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoma\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematomata (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematomata", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematomata", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematometer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematophyte (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematophyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematophyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematophyte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematophyte\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematopoiesis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematopoiesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematopoiesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematopoieses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematopoieses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematopoietic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematopoietic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematopoietic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematorrhachis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematorrhachis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematorrhachis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematosepsis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematosepsis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematosepsis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematosin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematosin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematosin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematosis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematosis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematosis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematothermal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematothermal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematothermal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoxylic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoxylic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoxylic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematoxylin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematoxylin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoxylin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematoxylins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoxylins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematoxylin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematoxylin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematozoal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematozoal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozoal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematozoic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematozoon (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematozoon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozoon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematozoa", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozoa", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematozoon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozoon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematozzoa (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematozzoa", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematozzoa", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hematuria (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hematuria", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematuria", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematurias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematurias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hematuria\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haematuria\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heme (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haem", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemerythrin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemerythrin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hemoerythrin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemihypesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemihypesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hemihypoesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoblast (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoblast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoblast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoblast\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoblast\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemochromatosis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemochromatosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemochromatosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemochromatoses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemochromatoses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemochrome (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemochrome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemochrome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocoel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocoel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocoel", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemocoels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocoels", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoconcentration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoconcentration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoconcentration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoconcentration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoconcentration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoconia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoconia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoconia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocyanin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocyanin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocyanin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemocyanins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocyanins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocyte (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocyte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocyte", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemocytes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocytes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemocyte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocyte\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocytoblast (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocytoblast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocytoblast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemocytoblast\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocytoblast\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocytoblastic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocytoblastic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocytoblastic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemocytometer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemocytometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemocytometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemodialysis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemodialysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodialysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemodialyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodialyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemodialysis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodialysis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemodilution (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemodilution", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodilution", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemodynamic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemodynamic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodynamic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemodynamics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodynamics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemodynamics\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemodynamics\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoflagellate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoflagellate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoflagellate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoflagellate\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoflagellate\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoglobic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoglobic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoglobin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoglobin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoglobin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoglobinopathy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoglobinopathy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobinopathy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoglobinopathies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobinopathies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoglobinous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoglobinous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobinous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoglobinuria (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoglobinuria", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobinuria", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoglobinuria\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoglobinuria\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemogram (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemogram", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemolysin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemolysin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemolysin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemolysin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemolysin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemolysis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemolysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemolysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemolytic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemolytic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemolytic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemometer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemometer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hemon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Haemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hemon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Haemon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemophile (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemophile", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophile", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemophile\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophile\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemophilia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemophilia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophilia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemophilia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophilia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemophiliac (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemophiliac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophiliac", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemophiliacs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophiliacs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemophiliac\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophiliac\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemophilic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemophilic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemophilic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemopod (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemopod", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemopod", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemopoiesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemopoiesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemopoiesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemoptysis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemoptysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoptysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoptyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoptyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemoptysis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemoptysis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemorrhage (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemorrhage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhage\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhage\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhaged", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhaged", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhaging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhaging", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhages", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhages", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemorrhoid (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemorrhoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhoids", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhoids", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemorrhoidal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemorrhoidal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhoidal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemorrhoidectomy (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemorrhoidectomy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhoidectomy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemorrhoidectomy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemorrhoidectomy\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemosporid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemosporid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemosporid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemosporidian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemosporidian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemosporidian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemostasia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemostasia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemostasia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemostasis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemostasis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemostasis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemostases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemostases", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemostasis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemostasis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemostatic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemostatic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemostatic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemothorax (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemothorax", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemothorax", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemothorax\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemothorax\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemotoxic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemotoxic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemotoxic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hemotoxin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hemotoxin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemotoxin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hemotoxin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "haemotoxin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heparinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heparinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heparinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hepatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hepatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hepatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hepatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hepatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hepatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hepatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hepatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hepatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hepatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hepatorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hepatorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hepatorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heraldize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heraldize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heraldise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heraldizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heraldises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("herborization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "herborization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "herborizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("herborize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "herborize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "herborized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "herborizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "herborizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "herborises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heredes (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heredes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "haeredes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hereticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hereticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hereticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hereticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hereticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heroinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heroinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heroization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heroization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heroize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heroize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "heroizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "heroises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("het (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "het", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "haet", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "haets", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heterecious (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heterecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "heteroecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heteric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heteric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hetaeric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("heterism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "heterism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hetaerism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hexachlorethane (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hexachlorethane", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hexachloroethane", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hexachlorethanes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hexachloroethanes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hexametrize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hexametrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hexametrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hexametrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hexametrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hexametrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hexametrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hexametrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hexametrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hexestrol (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hexestrol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hexoestrol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hibernicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hibernicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hibernicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hibernicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hibernicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hibernicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hibernicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hibernicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hibernization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hibernization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hibernize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hibernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hibernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hibernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hiccup (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hiccuped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hiccupped", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hiccuping", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hiccupping", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hierarchize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hierarchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hierarchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hierarchized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hierarchised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hierarchizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hierarchising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("highfalutin (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "highfalutin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hifalutin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "highfaluting", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("high_jinks (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "high jinks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hijinks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hijack (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hijack", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijacked", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjacked", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijacking", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjacking", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijacks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijacks\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjack\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hijacker (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hijacker", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjacker", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijackers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjackers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hijacker\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "highjacker\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hilloed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hilloed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hilloaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hinduize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hinduize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hinduizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hinduising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hippie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hippie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hippy", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hippies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hippie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hippy\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hippy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hippieness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hippieness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hippiness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hippienesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hippinesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hippieness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hippiness\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hirsel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hirseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hirselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hirseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hirselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hispanicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hispanicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispanicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispanicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hispanicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hispanicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispanicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispanicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispanicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispanicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispanicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispanicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispanicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispanicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispanicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispanicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispanicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispanicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hispaniolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hispaniolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hispaniolizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hispaniolising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispaniolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispaniolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispaniolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispaniolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispaniolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispaniolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hispaniolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hispaniolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("historicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "historicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "historicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "historicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "historicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "historicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "historicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "historicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "historicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hmm (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hmm", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hm", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hoagie (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hoagie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hoagy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hoagie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hoagy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hoagies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hollywoodize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hollywoodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hollywoodizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hollywoodising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoblastic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoblastic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoblastic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeobox (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeobox", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeobox", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeochromatic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeochromatic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeochromatic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeochronous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeochronous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeochronous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeocrystalline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeocrystalline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeocrystalline", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeogenic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeogenic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeogenous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeogenous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeogenous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoid", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeokinesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeokinesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeokinesis", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomeric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomeric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomeric", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomerous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomerous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomerous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomery (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomery", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomery", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeomeries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomeries", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomorph (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomorph", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorph", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeomorphs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorphs", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeomorph\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorph\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomorphic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomorphic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorphic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomorphous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomorphous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorphous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeomorphy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeomorphy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorphy", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeomorphies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeomorphies", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopath (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopath", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopath", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopaths", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopaths", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopath\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopath\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathic (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathicer", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathicest", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathically", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathicallier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathicallier", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathicalliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathicalliest", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathician (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathician", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathician", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathicity (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathicity", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathicity", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathist", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathists", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathist\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopathy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopathy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathy", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathies", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeopathy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopathy\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeophony (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeophony", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeophony", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoplasia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoplasia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoplasia", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoplastic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoplastic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoplastic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoplasy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoplasy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoplasy", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeopolar (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeopolar", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeopolar", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeosis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeosis", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeoses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoses", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeostasis (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeostasis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeostasis", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeostases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeostases", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeostasis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeostasis\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeostatic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeostatic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeostatic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeoteleuton (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeoteleuton", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoteleuton", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeoteleutons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeoteleutons", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeothermal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeothermal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeothermal", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeothermic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeothermic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeothermic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeothermous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeothermous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeothermous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeotic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeotic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeotype (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeotype", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeotype", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeotypic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeotypic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeotypic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeotypical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeotypical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeotypical", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeozoic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homoeozoic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeward (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "homewards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homey (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "homy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "homie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "homies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homey\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "homie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homeyness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homeyness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hominess", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeynesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hominesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homeyness\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hominess\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hominization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hominization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hominisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hominized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hominized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hominised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homogenization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homogenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homogenize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homogenizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homogenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogeniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogenisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homogenizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homogeniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homolog (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homologue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homolog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "homolog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homologization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("homologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "homologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "homologizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "homologiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honky (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "honkie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "honkey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honkies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "honkeys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honky\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "honkie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "honkey\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honor (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorableness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourablenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorableship (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorableship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourableship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorableships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourableships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorableship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourableship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorably (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honoree (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honoree", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honouree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorees", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourees", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honoree\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honouree\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "honorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("honorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "honorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "honourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hooch (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hooch", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hootch", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hooches", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hootches", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("hut"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hooch\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hootch\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("hut"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hoodlumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hoodlumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hoodlumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hoodlumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hoodlumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hooky (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hooky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hookey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hookies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hookeys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hooky\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hookey\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hooliganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hooliganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hooliganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hooliganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hooliganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hoosierize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hoosierize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hoosierise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hoosierizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hoosierises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hoosierize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hoosierise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Hooverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Hooverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hooverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hooverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hooverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Hooverize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Hooverise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hore (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hore", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "horae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("horizontalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "horizontalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horizontalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "horizontalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horizontalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "horizontalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horizontalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("horizontalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "horizontalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horizontalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "horizontalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horizontalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hormonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hormonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hormonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hormonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hormonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("horrorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "horrorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horrorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "horrorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "horrorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("horsey (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "horsey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "horsy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hospitalization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hospitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hospitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hospitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hospitalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hospitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hospitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hospitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hospitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hospitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hostilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hostilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hostilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hostilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hostilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hotelization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hotelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hotelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hotelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hotelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hotelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hotelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hotelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hotelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hotelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hotelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hotelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("housel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "houseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "houselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "houseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "houselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "houselings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "housellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hovel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hoveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hovelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hoveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hovelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hoveler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hoveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hoveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hovelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hovellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hovercraft (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hovercraft", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hovercrafts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("plural"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hucksterize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hucksterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hucksterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hucksterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hucksterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("huer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "huer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hure", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humanitarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humanitarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanitarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanitarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanitarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humanization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humanize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humanizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hummus (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hummus", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hoummos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "houmus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + Variant { + word: "humus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humus", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humongous (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humongous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "humungous", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humor (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humoral (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humoral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "humoural", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorful (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "humorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorless (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorlessness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorlessness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlessness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorlessnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlessnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "humorlessness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humourlessness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorsome (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorsome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humoursome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("humorsomeness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "humorsomeness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "humoursomeness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hurrah (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hurrah", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hooray", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hoorah", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hurray", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hurrahed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hoorayed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hurrayed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hurrahing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hooraying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hurraying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hurrahs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hoorays", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hoorahs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hurrays", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hurrahes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hurrah\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hooray\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hoorah\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hurray\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hooray", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "hurrah", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hurray", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" :2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hurricanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hurricanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hurricanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hurricanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hurricanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("huzzah (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "huzzah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "huzza", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "huzzahed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "huzzaed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "huzzah\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "huzza\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "huzzahes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "huzzas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "huzzahing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "huzzaing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyalinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyalinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyalinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyalinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyalinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyalinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyalinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyalinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyalinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyalinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hybridizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hybridizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hybridization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hybridization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hybridize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hybridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hybridizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hybridizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hybridizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hybridiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydremias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydraemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydremia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydraemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydremic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrocele (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydrocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrocephalus (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrocephalus", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrocephaly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrocephaluses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrocephalies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrocephalus\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrocephaly\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrogenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrogenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrogenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrogenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrogenize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrogenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrogenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrogenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolyzable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolyzate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolyzate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolyzation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolyzation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolyze (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [hydrolysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrolyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrolyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydrolyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydrolyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydrorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydrorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hydrorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydroxylization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydroxylization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydroxylisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydroxylizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydroxylisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydroxylization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydroxylisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hydroxylize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hydroxylize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydroxylise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hydroxylizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hydroxylises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyena (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyena", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "hyaena", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyenas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "hyena", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "hyaenas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "hyaena", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyena\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "hyaena\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "If hyaena not variant than: _2: hyaenas / _V2: hyaena", + ], + }, +Cluster { + header: Some("hyenic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hyaenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hygienization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hygienization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hygienisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hygienizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hygienisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hygienization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hygienisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hygienize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hygienize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hygienise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hygienizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hygienises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hymenean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hymenean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hymenaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperbolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperbolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperbolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperbolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperbolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperbolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperbolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperbolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperbolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercalcemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercalcemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypercalcaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercalcemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypercalcaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercalcinemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercalcinemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypercalcinaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercatharsises (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercatharsises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercatharses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperchloremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperchloremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperchloraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercholesterolemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercholesterolemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypercholesterolaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercholesterolemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypercholesterolaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercivilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercivilized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercivilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperciviliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercivilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercivilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercriticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercriticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercriticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercriticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercriticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercriticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercriticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypercriticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercriticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypercryesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypercryesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hypercryaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperemphasize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperesthete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperesthete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperesthete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthete\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperestheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaestheticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperestheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperaestheticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperglycemic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperglycemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperglycaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperimmunization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperimmunization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperimmunisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperimmunizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperimmunisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperimmunization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperimmunisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperimmunize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperimmunize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperimmunise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperimmunizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperimmunises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperinsulinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperinsulinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperinsulinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperinsulinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperinsulinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperinsulinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperinsulinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperinsulinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperinsulinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperinsulinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperinsulinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperinsulinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperlipemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperlipemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperlipaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperlipemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperlipemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperlipaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperlipidemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperlipidemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperlipidaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypernatremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypernatremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypernatraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperoxygenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperoxygenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperoxygenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperoxygenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperoxygenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperparasitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperparasitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperparasitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperparasitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperparasitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperpnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperpnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperpnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperpnea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hyperpnoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperrealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperrealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperrealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperrealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperrealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypersensitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypersensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypersensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypersensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypersensitize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypersensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypersensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypersensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypersensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypersensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperspiritualizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperspiritualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperspiritualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperspiritualizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperspiritualisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperspiritualizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperspiritualising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperthyroidization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperthyroidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperthyroidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperthyroidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperthyroidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperthyroidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperthyroidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyperthyroidize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyperthyroidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperthyroidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyperthyroidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyperthyroidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypervitalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypervitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypervitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypervitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypervitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypervitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypervitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypervitalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypervitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypervitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypervitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypervitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypesthesic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypesthesic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypaesthesic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypethral (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypethral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypaethral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyphenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyphenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyphenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyphenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyphenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyphenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyphenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyphenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyphenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyphenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnoidize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnoidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnoidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnoidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnoidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnoidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnoidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnoidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnoidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnopedia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnopedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypnopaedia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnopedias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypnopaedias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnotizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnotizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnotizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnotizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnotization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnotize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypnotizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypnotizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypnotizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypnotiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypocenter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypocenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hypocentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypocenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hypocentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypocenter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "hypocentre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypogeal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypogeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypogean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypogean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypogeic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypogeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypogeous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypogeous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaeous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypogeum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypogeum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypogea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypogaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypomagnesemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypomagnesemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypomagnesaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypomagnesemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypomagnesaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypomenorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypomenorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypomenorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypomenorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypomenorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypophysectomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypophysectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypophysectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypophysectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypophysectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypopnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypopnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypopnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypopnea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypopnoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyposensitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyposensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyposensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hyposensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyposensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hyposensitize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hyposensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hyposensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypostasize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypostasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypostatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypostatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypostatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypostatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypostatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypostatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypothesize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypothesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothesizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypothesizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypothesizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothesizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothesizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothesiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypothetize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypothetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypothetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hypothetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypoxemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypoxemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypoxaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hypoxemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypoxaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hypoxemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hypoxemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "hypoxaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("hysterectomize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "hysterectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hysterectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hysterectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hysterectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hysterectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hysterectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "hysterectomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "hysterectomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ichneumonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ichneumonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ichneumonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ichneumonizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ichneumoniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ichneumonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ichneumonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ichorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ichorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ichorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ichorrhemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ichorrhemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ichorrhaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("icon (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "icon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "icons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "icon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikon\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "icon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "icons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "icon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ikon\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iconic (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iconic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ikonic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iconically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iconically", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ikonically", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iconize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iconized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iconised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iconizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iconising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Idea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Idea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Idea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idealization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idealize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idealizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idealizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idealizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idealiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Idean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Idean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Idean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ideologize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ideologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ideologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ideologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ideologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ideologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ideologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idiotize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idiotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idiotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idiotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idiotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idiotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idiotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idiotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idiotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolaster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolaster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "idolastre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolatrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolatrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolatrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolatrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolatrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolatrizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolatrizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolatrizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolatriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idolizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idolizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idoliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idolisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idolizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "idoliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Idumea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Idumea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idumaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Idumea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idumaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Idumean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Idumean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idumaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Idumeans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Idumaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("idyll (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "idyll", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "idyl", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idylls", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "idyls", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "idyll\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "idyl\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ier (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ire\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ignitable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ignitable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ignitible", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("igniter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "igniter", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ignitor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "igniters", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ignitors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "igniter\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ignitor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ileocecal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ileocecal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ileocaecal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iliadize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iliadize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iliadise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iliadizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iliadises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iliadize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iliadise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("illegalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "illegalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("illegalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "illegalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("illegitimatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "illegitimatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegitimatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegitimatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegitimatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegitimatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegitimatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illegitimatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illegitimatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("illiberalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "illiberalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illiberalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illiberalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illiberalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illiberalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illiberalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "illiberalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "illiberalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Illuminize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Illuminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Illuminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Illuminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Illuminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Imer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Imer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Imre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Imer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Imre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immaterialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immaterialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immaterialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immaterialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immaterialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immaterialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immaterialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immaterialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immaterializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immaterialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immaterializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immaterialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immiserization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immiserization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immiserizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immiserize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immiserize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immiserized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immiserizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immiserizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immiserises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immobilization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immobilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immobilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immobilizer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immobilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immobilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immobilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immoralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immoralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immoralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immoralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immoralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immortalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immortalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immortalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immortalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immortalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immortalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immortalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immortalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immortalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immortaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immunization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immunization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immunize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immunize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immunises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("immunizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "immunizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immuniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "immunizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "immuniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impactionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impactionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impactionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impactionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impactionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impanel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impanel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "empanel", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impaneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "empaneled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "impanelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "empanelled", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impaneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "empaneling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "impanelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "empanelling", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impanels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "empanels", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impanelment (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impanelment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "empanelment", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impasted (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impasted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "impastoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("imperialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "imperialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("imperialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "imperialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "imperialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("imperil (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "imperiled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "imperilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "imperiling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "imperilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("imperscriptible (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "imperscriptible", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "imprescriptible", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impersonalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impersonalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impersonalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impersonalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impersonalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impersonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impersonalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impersonalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impersonalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "impersonalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("impostor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "impostor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imposter", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impostors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imposters", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "impostor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "imposter\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("improviser (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "improviser", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "improvisers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "improviser\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("improvizatorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "improvizatorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisatorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisatorize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "improvizatorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisatorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "improvisatorizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incarnalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incarnalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incarnalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incarnalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incarnalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incarnalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incarnalizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incarnalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incarnalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incenter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "incentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "incentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incentivization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incentivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incentivizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incentivize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incentivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incentivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incentivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incentivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incentivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incerate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incerate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "increate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incognizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incognizance (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incognizance", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incognisance", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incognizances", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incognisances", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "incognizance\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incognisance\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("incognizant (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "incognizant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "incognisant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Indianization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Indianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Indianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Indianize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Indianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Indianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Indianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Indianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Indianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("indigene (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "indigene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("indigenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "indigenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indigenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("indigenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "indigenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indigenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indigenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indigenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indigenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("individualization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "individualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("individualize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "individualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("individualizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "individualizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "individualizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("individualizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "individualizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "individualisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("indraft (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "indraft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indraught", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indrafts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indraughts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "indraft\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "indraught\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("industrialization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "industrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "industrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "industrialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("industrialize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "industrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "industrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "industrializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "industrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "industrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inesthetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "inaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infamize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infamonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infamonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infamonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infamonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infere (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "infree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inferiorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inferiorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inferiorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inferiorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inferiorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infernalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infernalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infernalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infernalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infernalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infidelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infidelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infidelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infidelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infidelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("infinitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "infinitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infinitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "infinitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "infinitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inflection (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inflection", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "inflexion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inflection\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "inflexion\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inflections", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "inflexions", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("informalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "informalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "informalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "informalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "informalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ingveonic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ingveonic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ingvaeonic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ingveonic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ingvaeonic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ingweonic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ingweonic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ingwaeonic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ingweonic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ingwaeonic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inhumanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inhumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inhumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inhumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inhumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initial (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initialed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "initialled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initialing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "initialling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initialer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initialer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "initialler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initialers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "initiallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initialer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "initialler\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initializable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initializable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initialization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initialize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("initializer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "initializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "initializers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "initialisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inorganization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inorganized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "inorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inquire (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inquire", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inquired", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquired", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inquiring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquiring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inquires", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquires", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "Enquire is more common in British English, but inquire may still be", + "used when meaning \"make a formal investigation\" -- Ox", + ], + }, +Cluster { + header: Some("inquiry (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inquiry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquiry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inquiries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquiries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inquiry\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "enquiry\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for inquire", + ], + }, +Cluster { + header: Some("insignia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "insignia", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "insigne", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insignia", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "insignias", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "insignes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insignia\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "insigne\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("insolubilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "insolubilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insolubilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("insolubilize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "insolubilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insolubilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insolubilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insolubilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insolubilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("install (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "install", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "instal", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "installs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "instals", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("installment (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "installment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "instalment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "installments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "instalments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "installment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "instalment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("instill (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "instill", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "instil", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "instills", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "instils", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("instituter (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "instituter", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "institutor", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "instituters", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "institutors", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "instituter\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "institutor\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("institutionalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "institutionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("institutionalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "institutionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("institutionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "institutionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "institutionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "institutionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("instrumentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "instrumentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "instrumentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "instrumentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "instrumentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("insularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "insularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("insurrectionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "insurrectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insurrectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insurrectionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insurrectionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insurrectionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insurrectionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "insurrectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "insurrectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("integralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "integralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "integralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "integralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "integralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "integralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "integralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("integralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "integralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "integralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "integralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "integralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intellectualization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intellectualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intellectualize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intellectualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intellectualizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intellectualizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intellectualizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intellectualiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intercivilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intercivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intercolonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intercolonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercolonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercolonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercolonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercolonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercolonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intercrystallization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intercrystallization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercrystallisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercrystallizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercrystallisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercrystallization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercrystallisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intercrystallize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intercrystallize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercrystallise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intercrystallizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intercrystallises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interhemal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interhemal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "interhaemal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interhybridize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interhybridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interhybridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interhybridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interhybridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interiorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interiorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interiorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interiorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interiorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interiorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interiorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interiorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interiorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interiorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interiorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interiorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interjectionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interjectionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjectionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjectionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjectionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interjectionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interjectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interjectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interjudgment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interjudgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "interjudgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjudgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "interjudgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interjudgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "interjudgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intern (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intern", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "interne", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intern", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "interne", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "interns", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "internes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intern\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "interne\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internationalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internationalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "internationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internment (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internment", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "internement", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internments", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "internements", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("internship (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "internship", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "interneship", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "internships", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "interneships", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("interorganizational (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "interorganizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "interorganisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intime (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intime", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "intimae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("intraorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "intraorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intraorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intraorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intraorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "intraorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "intraorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inure (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inure", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enure", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inured", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enured", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inuring", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enuring", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inures", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "enures", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("invigor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "invigor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "invigour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("inward (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "inward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "inward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "inwards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Adverb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iodization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iodization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iodize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iodizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iodizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iodizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iodiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ionicization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ionicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ionicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ionicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ionicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ionicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ionizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ionizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ionization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ionize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ionizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ioniser", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisers", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ioniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ionizion (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ionizion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionision", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ionizions", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ionisions", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iphinoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iphinoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Iphinoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iphinoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Iphinoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ipomea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ipomea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ipomoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iranize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iranize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iranise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iranizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iranises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iranize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iranise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iricize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iricize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iricized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iricized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iricized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iricizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iricizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Iricizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Iricising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iridectomize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iridectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iridectomized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iridectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iridectomizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iridectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iridization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iridization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iridizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("iridize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "iridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iridized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iridizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "iridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "iridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Irishize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Irishize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Irishizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Irishising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ironize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ironize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ironise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ironized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ironised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ironizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ironising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ironizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ironises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("irrationalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "irrationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "irrationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "irrationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "irrationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("irrealizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "irrealizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrealisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("irrecognizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "irrecognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irrecognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("irregularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "irregularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irregularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "irregularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "irregularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ischemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ischemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ischaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ischemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ischaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ischemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ischaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ischemic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ischemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ischaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Islamicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Islamicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Islamization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Islamization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Islamize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Islamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Islamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Islamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isochronization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isochronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isochronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isochronize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isochronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isochronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isochronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isochronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isochronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isochronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isochronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isochronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isoimmunization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isoimmunization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isoimmunisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isoimmunizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isoimmunisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isoimmunization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isoimmunisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isoimmunize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isoimmunize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isoimmunise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isoimmunizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isoimmunises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isomerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isomerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isomerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isomerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("isomerize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "isomerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isomerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isomerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "isomerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "isomerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Israelitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Israelitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Israelitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Israelitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Israelitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Israelitize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Israelitise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Italianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Italianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Italianize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Italianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Italianizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Italianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Italianizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Italianiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("italicization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "italicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("italicize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "italicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "italicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "italicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("itemization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "itemization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("itemize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "itemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("itemizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "itemizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "itemizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "itemiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Iturean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Iturean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ituraean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Itureans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ituraeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("izing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "izing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jacobean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jacobean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jacobaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jacobinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jacobinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jacobinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jacobinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jacobinizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jacobinising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jail (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jail", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaol", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jails", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaols", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jail\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaol\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaoled", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaoling", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jailbird (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jailbird", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbird", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailbird\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbird\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailbirds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbirds", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jailbreak (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jailbreak", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbreak", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailbreak\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbreak\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailbreaks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "gaolbreaks", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jailer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jailer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jailor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gaoler", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jailors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gaolers", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jailer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jailor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gaoler\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("janizary (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "janizary", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "janisary", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "janizaries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "janisaries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Japanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Japanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Japanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Japanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Japanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Japanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Japanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Japanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Japanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Japanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jargonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jargonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jargonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jargonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jargonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jargonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jargonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jargonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jargonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jargonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jasmine (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jasmine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jessamine", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jasmines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jessamines", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jasmine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jessamine\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jasperize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jasperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jasperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jasperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jasperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jasperizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jasperising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jasperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jasperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jeez (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jeez", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "geez", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jeopardization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jeopardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jeopardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jeopardize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jeopardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jeopardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jeopardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jeopardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jeopardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jeopardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jeopardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jeopardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jerrycan (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jerrycan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jerrican", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jerry can", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jerrycans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jerricans", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jerry cans", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jerrycan\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "jerrican\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jerry can\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Joes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jesuitization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jesuitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jesuitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jesuitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jesuitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jesuitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jesuitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jesuitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jesuitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jewel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jeweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jewelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jeweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jewelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jeweler (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jeweler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jeweller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jewelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jewellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jeweler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jeweller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jewelry (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jewelry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jewellery", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jewelry\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jewellery\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jibe (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jibe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("agree"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("agree"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("agree"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("agree"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gibe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jibe", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insult"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gibed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jibed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insult"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gibing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jibing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insult"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gibes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jibes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insult"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "gibe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jibe\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("insult"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gybe", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sailing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gybed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sailing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gybing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sailing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gybes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sailing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jibe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "gybe\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sailing"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jihad (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jihad", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jehad", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jihads", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jehads", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jihad\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jehad\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jinni (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jinni", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinn", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "djinni", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "djinn", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jinn", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "djinns", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "djinn", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jinni\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinn\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "djinni\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "djinn\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jinrikisha (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jinrikisha", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinricksha", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jinriksha", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jinrikishas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinrickshas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jinrikshas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jinrikisha\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jinricksha\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "jinriksha\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jokey (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jokey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "joky", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Jonathanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Jonathanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jonathanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jonathanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jonathanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Jonathanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Jonathanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "jours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("journalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "journalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("journalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "journalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("journalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "journalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "journalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "journaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jovialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jovialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jovialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jovializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jovialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Judaization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Judaization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judaization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Judaize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Judaize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judaized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judaizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Judaizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Judaizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judaizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judaizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "judaiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Judean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Judean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judeans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Judeophobia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Judeophobia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaeophobia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Judeophobia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Judaeophobia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("judgment (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "judgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("judgmental (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "judgmental", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgemental", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judgmentaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgementaler", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judgmentalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "judgementalest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("judicialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "judicialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "judicialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "judicializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "judicialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jujitsu (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jujitsu", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jujutsu", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "jiujitsu", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jujitsus", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jujutsus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "jiujitsus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jujitsu\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "jiujitsu\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "jujutsu\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Julide (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Julide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Julidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Julide\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Julidae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("jumboize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "jumboize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jumboise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jumboized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jumboised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jumboizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jumboising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "jumboizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "jumboises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("junketeer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "junketeer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "junketer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "junketeers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "junketers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "junketeer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "junketer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("juvenilize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "juvenilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "juvenilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "juvenilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "juvenilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kabbalah (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kabbalah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cabala", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kabbala", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kabala", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cabbala", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "cabbalah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kane (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kane", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kanae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kaolinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kaolinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kaolinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kaolinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kaolinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kaolinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kaolinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kaolinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kaolinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kaolinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kebab (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kebab", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kabob", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kebob", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kebabs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kabobs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kebobs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kebab\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kebob\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kabob\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ked (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ked", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Keizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Keizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Keiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Keizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Keiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kellia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kellia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "koellia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kembed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kembed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kemboed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kennel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kenneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kennelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kenneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kennelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Keppel (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Keppel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Koeppel", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Keppel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Koeppel\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("keratinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "keratinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "keratinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "keratinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("keratinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "keratinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "keratinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "keratinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "keratinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "keratinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Kerin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Kerin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Krein", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Kerin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Krein\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kernel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kerneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kernelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kerneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "kernelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kerosene (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kerosene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerosine", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kerosenes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerosines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kerosene\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kerosine\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ketchup (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ketchup", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "catsup", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "catchup", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ketchups", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "catsups", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "catchups", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ketchup\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "catsup\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "catchup\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ketonemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ketonemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ketonaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ketonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ketonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ketonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ketonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ketonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ketonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ketonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ketonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ketonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ketonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ketonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ketonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kiddie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kiddie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kiddy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kiddie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kiddy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kidnap (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kidnapped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnaped", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kidnapping", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnaping", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kidnappee (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kidnappee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnapee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kidnappees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnapees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kidnappee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnapee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kidnapper (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kidnapper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnaper", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kidnappers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnapers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kidnapper\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kidnaper\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kilogram (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kilogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kilogramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kilograms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kilogrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kilogram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kilogramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kiloliter (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kiloliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilolitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kiloliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilolitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kiloliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilolitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kilometer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kilometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kilometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilometres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kilometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kilometre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kindergartner (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kindergartner", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kindergartener", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kindergartners", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kindergarteners", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kindergartner\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kindergartener\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kinesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kinesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kinesthesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kinesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinestheses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaestheses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinesthesis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthesis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kinesthetic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kinesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinestheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaestheticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinestheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaestheticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinesthetics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthetics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kinesthetically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kinesthetically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaesthetically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinestheticallier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaestheticallier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kinestheticalliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "kinaestheticalliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kissogram (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kissogram", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kissagram", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kissograms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kissagrams", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kissogram\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kissagram\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("knickknack (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "knickknack", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nicknack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "knickknacks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nicknacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "knickknack\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nicknack\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("knockwurst (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "knockwurst", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "knackwurst", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "knockwursts", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "knackwursts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "knockwurst\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "knackwurst\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kooky (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kooky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kookie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kopeck (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kopeck", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kopek", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "copeck", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kopecks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kopeks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "copecks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kopeck\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "kopek\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "copeck\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Kossean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Kossean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Kossaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Kossean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Kossaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kumquat (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kumquat", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cumquat", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kumquats", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cumquats", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kumquat\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "cumquat\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kyanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kyanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kyanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kyanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kyanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kyanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kyanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "kyanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "kyanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("kyles (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "kyles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "kyloes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("label (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labelable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labelable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labellable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labeler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labiate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labiate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labiatae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labiovelarization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labiovelarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labiovelarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labiovelarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labiovelarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labiovelarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labiovelarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labiovelarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labiovelarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labiovelarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labiovelarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labiovelarizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labiovelarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "labiovelarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("labor (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "labor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "laboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "labored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "laboured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborage (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laboredly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laboredly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouredly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboredlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouredlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboredliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouredliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laboredness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laboredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborednesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourednesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboredness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouredness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laboress (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laboress", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouress", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborhood (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborhood", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourhood", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborhoods", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourhoods", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborhood\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourhood\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laboringly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laboringly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouringly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboringlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouringlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laboringliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labouringliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Laborism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Laborism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "Labourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Laborism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "Labourism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Laborite (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Laborite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Labourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Laborites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Labourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Laborite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Labourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "labourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laborlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "labourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborsaving (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborsaving", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "laboursaving", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborsome (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborsome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "laboursome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laborsomely (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laborsomely", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "laboursomely", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lachrymal (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lachrymal", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lacrimal", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lackluster (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lackluster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lacklustre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lacklusterrer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lacklustrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lacklusterrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lacklustrest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lacklusters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lacklustres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lackluster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lacklustre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laconize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laconized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laconised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laconizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laconising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lactonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lactonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lactonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lagniappe (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lagniappe", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lagnappe", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lagniappes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lagnappes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lagniappe\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lagnappe\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lairize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lairize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lairise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lairized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lairised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lairizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lairising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lairizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lairises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lambaste (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lambaste", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lambast", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lambastes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lambasts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laminarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laminarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laminarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laminarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laminarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laminarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laminarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laminarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laminarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Lander (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Lander", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Landre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lander\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Landre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Laothoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Laothoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Laothoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Laothoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Laothoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lapeled (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lapeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lapelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lasagna (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lasagna", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lasagne", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lasagnas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lasagnes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lasagna\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lasagne\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laster (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lastre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("latentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "latentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "latentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "latentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "latentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lateralization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lateralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lateralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lateralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lateralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lateralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lateralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lateralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lateralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lateralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lateralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lateralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laterization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "laterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Latinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Latinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Latinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Latinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "latinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "latinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Latinizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Latinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latiniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Latinizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Latinisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("launderette (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "launderette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "laundrette", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "launderettes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "laundrettes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "launderette\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "laundrette\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laure (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laure", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laurae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("laurel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "laureled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laurelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "laureling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laurelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lavalier_microphone (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lavalier microphone", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lavaliere microphone", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lavalier microphones", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lavaliere microphones", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lavalier microphone\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lavaliere microphone\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lavolted (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lavolted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lavoltaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leaped (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leaped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "leapt", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("learned (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "learned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "learnt", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leatherize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leatherize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "leatherise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leatherizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "leatherises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lefty (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lefty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "leftie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lefty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "leftie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legalization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legging (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legging", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "leggin", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leggings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "leggins", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legging\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "leggin\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legitimatize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legitimatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legitimization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legitimization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legitimize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legitimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "legitimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("legitimizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "legitimizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "legitimiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leguminose (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leguminose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leguminosae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lemmatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lemmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lemmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lemmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lemmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lemmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lemmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lemmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lemmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leporide (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leporide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leporidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leptospire (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leptospire", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leptospirae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Lernean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Lernean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Lernaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lernean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Lernaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lernean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lernaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lesses (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "loesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lethalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lethalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lethalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lethargize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lethargize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethargise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lethargized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethargised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lethargizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethargising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lethargizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lethargises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leucemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leuchemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leuchemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leuchaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucocythemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucocythemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucocythaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucocythemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucocythemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucocythaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leucorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leucorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leucorrheal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leucorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leucorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Leucothoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Leucothoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Leucothoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Leucothoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Leucothoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leukemia (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leukemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leukemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leukemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leukemogenesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leukemogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukaemogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leukemogeneses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukaemogeneses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leukorrhea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leukorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("leukorrheal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "leukorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "leukorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("level (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "level", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "levelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "levellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "leveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levelest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "levellest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "levelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "leveling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "levelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levigate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levigate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevigate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levigated", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevigated", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levigating", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevigating", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levigates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevigates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levo (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levo", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevo", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levoduction (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levoduction", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevoduction", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levogyrate (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levogyrate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevogyrate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levogyre (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levogyre", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevogyre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levogyrous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levogyrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevogyrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levolactic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levolactic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevolactic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levorotation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levorotation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevorotation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levorotations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevorotations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levorotation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevorotation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levorotatory (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levorotatory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevorotatory", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levotartaric (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levotartaric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevotartaric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levoversion (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levoversion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevoversion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levulin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levulin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevulin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("levulose (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "levulose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevulose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levuloses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevuloses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "levulose\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "laevulose\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lexicalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lexicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lexicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lexicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lexicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lexiconize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lexiconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lexiconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lexiconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lexiconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libelant (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libelant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelants", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellants", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelant\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellant\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libelee (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libelee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellee", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelees", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellees", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelee\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellee\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libeler (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libelous (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libelous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "libellous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelouser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "libellouser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelousest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "libellousest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("libelously (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "libelously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelouslier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellouslier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "libelousliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "libellousliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liberalization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liberalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liberalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liberalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liberalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liberalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liberalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liberaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("license (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "license", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "licence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "licenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "licences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "license\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "licence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "license", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "licence", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "licensed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "licenced", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "licensing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "licencing", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "licenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "licences", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("licenseless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "licenseless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "licenceless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("licenselesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "licenselesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "licencelesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lichenization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lichenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lichenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lichenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lichenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lichenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lichenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lichenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lichenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lichenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("licorice (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "licorice", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquorice", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "licorice\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquorice\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lignitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lignitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lignitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lignitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lignitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lignose (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lignose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lignosae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ligule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ligule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ligulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("likability (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "likability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeability", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "likabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeabilities", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "likability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeability\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("likable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "likable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("likableness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "likableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeableness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "likablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeablenesses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "likableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "likeableness\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Lilliputianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Lilliputianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lilliputianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lilliputianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lilliputianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lilliputianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lilliputianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linchpin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linchpin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lynchpin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linchpins", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lynchpins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linchpin\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lynchpin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linearizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linearizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linearization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linearization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linearizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linearization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linearize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linearize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linearized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linearizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linearizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linearizion (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linearizion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linearision", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linenizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lineniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linenizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "linenisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linge (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lingoe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lingualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lingualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lingualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lingualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lingualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("linguine (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "linguine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "linguini", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linguines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "linguinis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "linguine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "linguini\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lionizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lionizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lionization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lionize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lionizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lioniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lionisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lionizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lioniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lipemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lipemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lipaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lipemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lipemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lipaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lipoidemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lipoidemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lipoidaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liquefier (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liquefier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquifier", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquefiers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquifiers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liquefy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liquefy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquify", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquefied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquified", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquefying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquifying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquefies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquifies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liquidization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liquidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liquidize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liquidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liquidizer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liquidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liquidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "liquidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lissome (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lissome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lissom", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lissomely (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lissomely", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lissomly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lissomeness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lissomeness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lissomness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lissomenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lissomnesses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Listerize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Listerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Listerizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Listerising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("litchi (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "litchi", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lychee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lichee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "litchis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lychees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lichees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "litchi\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lychee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lichee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("liter (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "liter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "litre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "litres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "liter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "litre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("literalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "literalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("literalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "literalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("literalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "literalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "literalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "literaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lithoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lithaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lithaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithographize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithographize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithographise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lithographizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithographises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithopedion (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithopedion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lithopaedion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithopedium (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithopedium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lithopaedium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithophyse (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithophyse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lithophysae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lithotritize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lithotritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithotritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lithotritized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithotritised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lithotritizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithotritising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lithotritizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lithotritises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("livable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "livable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "liveable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("livableness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "livableness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "liveableness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("loathe (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "loathe", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("detest"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loath", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loth", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "loathe", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("reluctant"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lobotomize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lobotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lobotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lobotomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lobotomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lobotomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lobotomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lobotomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lobotomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("localizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "localizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("localization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "localization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("localize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "localize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("localizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "localizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "localizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "localiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("locator (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "locator", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "locater", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "locators", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "locaters", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "locator\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "locater\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lodestar (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lodestar", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstar", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodestars", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstars", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodestar\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstar\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lodestone (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lodestone", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstone", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodestones", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstones", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodestone\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "loadstone\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lodgment (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lodgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lodgement", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lodgements", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lodgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lodgement\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lodicule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lodicule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lodiculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("loed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "loed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "looed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("logicalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "logicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("logicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "logicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("logicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "logicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "logicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("logopedic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "logopedic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logopaedic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logopedics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logopaedics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logopedics\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logopaedics\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("logorrhea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "logorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "logorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "logorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lollipop (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lollipop", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lollypop", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lollipops", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lollypops", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lollipop\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lollypop\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lollygag (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lollygag", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lallygag", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lollygagged", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lallygagged", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lollygagging", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lallygagging", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lollygags", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "lallygags", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Londonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Londonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Londonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Londonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Londonizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Londonising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("longeval (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "longeval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "longaeval", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("longevous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "longevous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "longaevous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("loony (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "loony", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "looney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loonier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "looneyier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loonies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "looneyies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "looneys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loony\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "looney\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lordy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lordy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lourdy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lorings (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lory (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "loury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("louter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "louter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "loutre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("louver (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "louver", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "louvre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "louvered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "louvred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "louvers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "louvres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "louver\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "louvre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lovability (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lovability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "lovaebility", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lovable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lovable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "loveable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lovableness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lovableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "loveableness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lovably (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lovably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "loveably", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("love (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "love", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "luv", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loves", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "luvs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("loyalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "loyalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "loyalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loyalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "loyalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lumbarization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lumbarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lumbarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lumbarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lumbarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lumbarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lumbarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lunatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lunatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lunatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lunatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lunatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lunule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lunule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lunulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lupine (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lupine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lupin", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("plant"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lupines", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lupins", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("plant"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lupine\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lupin\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("plant"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lupine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: Some("wolfish"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("luster (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "luster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustre", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lustered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustred", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lustering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustring", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustre\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lustering\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustring\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lusters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustres", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lusterless (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lusterless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lusterlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustrelesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lusterlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustrelessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lusterware (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lusterware", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustreware", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lusterwares", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustrewares", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lusterware\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lustreware\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("luteinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "luteinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luteinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luteinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("luteinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "luteinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luteinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luteinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "luteinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "luteinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Lutheranize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Lutheranize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheranise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lutheranizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheranises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lutheranize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheranise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Lutheranizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Lutheranizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheraniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lutheranizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheranisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Lutheranizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Lutheraniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lutrine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lutrine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lutrinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("luvvy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "luvvy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "luvvie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lovey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "luvvie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "loveys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "luvvies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lymphedema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lymphedema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "lymphoedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lymphemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lymphemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "lymphaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lyophilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lyophilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyophilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyophilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lyophilize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lyophilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyophilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyophilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyophilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lyophilizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lyophilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyophiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lyricization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lyricization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyricization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lyricize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lyricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyricized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyricizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lyricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lyricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lysogenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lysogenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lysogenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("lysogenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "lysogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lysogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lysogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lysogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lysogenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lysogenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "lysogenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "lysogenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mac (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mac", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "macks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mac\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mack\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("macadamization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "macadamization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macadamizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macadamization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("macadamize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "macadamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macadamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macadamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macadamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macadamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("macarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "macarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "macarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "macarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Maccabean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Maccabean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Maccabaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("machinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "machinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "machinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "machinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "machinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "machinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "machinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("machinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "machinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "machinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "machinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "machinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mackintosh (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mackintosh", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "macintosh", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mackintoshes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "macintoshes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mackintosh\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "macintosh\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("macrander (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "macrander", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "macrandre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("macule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "macule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Madera (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Madera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Madoera", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Madera\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Madoera\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maderization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maderization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maderizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maderize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maderized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maderizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maderizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maderises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magnetizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magnetizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magnetizable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magnetizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magnetization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magnetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magnetize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magnetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("magnetizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "magnetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "magnetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "magnetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maharajah (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maharajah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharaja", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maharajah\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharaja\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maharajahes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharajas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maharani (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maharani", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharanee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maharanis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharanees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maharani\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maharanee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mah-jongg (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mah-jongg", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mahjong", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mah-jonggs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mahjongs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mah-jongg\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mahjong\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mahoganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mahoganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mahoganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mahoganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mahoganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mahoganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mahoganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mahoganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mahoganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maiger (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maiger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maigre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mainor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mainor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mainour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mainors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mainours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mainprize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mainprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mainprise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maisters (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maisters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maistres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Maize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Maize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Maise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Maize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Maise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("majolica (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "majolica", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maiolica", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "majolicas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maiolicas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "majolica\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "maiolica\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("majorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "majorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "majorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "majorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "majorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("majuscule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "majuscule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "majusculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Malayize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Malayize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Malayise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Malayizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Malayises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Malayize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Malayise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("malleablize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "malleablize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "malleablise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "malleablizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "malleablises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("malodor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "malodor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "malodour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "malodors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "malodours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "malodor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "malodour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("malodorousness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "malodorousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "malodourousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mamma (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mamma", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gland"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mammae", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mammas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gland"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mamma\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gland"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mama", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "momma", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mamma", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mamas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mommas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mammas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mama\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "momma\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mamma\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mandarinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mandarinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mandarinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mandarinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mandarinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mandean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mandean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Mandaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mandeans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Mandaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mandean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Mandaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mandoer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mandoer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mandore", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mandrel (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mandrel", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mandril", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mandrels", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mandrils", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mandrel\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mandril\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maneuver (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maneuver", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuver", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuvered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvered", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuvering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvering", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvrings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuverings", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuvers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvers", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuver\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "manoeuvre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuver\'s", + types: &[ + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maneuverability (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maneuverability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maneuverable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maneuverable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maneuverer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maneuverer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maneuverer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "manoeuvrer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Manhattanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Manhattanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Manhattanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manhattanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Manhattanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Manicheanism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Manicheanism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Manichaeanism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manicheanism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Manichaeanism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Manicheans (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Manicheans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Manichaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Manicheism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Manicheism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Manichaeism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manicheisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Manichaeisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manicheism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Manichaeism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Manicheus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Manicheus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Manichaeus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manicheus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Manichaeus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("manikin (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "manikin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mannikin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "manikins", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mannikins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "manikin\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mannikin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("manila (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "manila", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "manilla", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":lower"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "manila\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "manilla\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":lower"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manila", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Manilla", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":upper"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Manila\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Manilla\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":upper"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mannerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mannerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mannerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mannerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mannerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mantelpiece (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mantelpiece", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mantlepiece", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mantelpieces", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mantlepieces", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mantes (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mantes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mantoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marabou (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marabou", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marabout", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marabous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marabouts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marabou\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marabout\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marabout", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marabouts", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marabout\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marbleize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marbleize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marbleise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marbleized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marbleised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marbleizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marbleising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marbleizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marbleises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("margarite (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "margarite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "margaritae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marginalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marginalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marginalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marginalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marginalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marginalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marginalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marginalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marginalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marginalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marginalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marginalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marijuana (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marijuana", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marihuana", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marijuanas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marihuanas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marijuana\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marihuana\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marlinespike (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marlinespike", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marlinspike", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marlinespikes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marlinspikes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marlinespike\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "marlinspike\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marmarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marmarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marmelize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marmelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marmelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marmelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marshal (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marshaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marshalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marshaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marshalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marsupialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marsupialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marsupializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marsupialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marsupialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marsupialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marsupialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marsupializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marsupializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "marsupialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Marte (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Marte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Martae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Marte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Martae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("martialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "martialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("martialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "martialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("martyrization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "martyrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("martyrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "martyrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("martyrizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "martyrizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "martyrizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "martyrisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marvel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marveler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marvelous (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marvelous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelouser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellouser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelousest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellousest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marvelously (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marvelously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelouslier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellouslier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelousliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellousliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("marvelousness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "marvelousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelousnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellousnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "marvelousness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "marvellousness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("masculinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "masculinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "masculinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "masculinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("masculinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "masculinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "masculinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "masculinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "masculinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "masculinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mat (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "matte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mat", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "matt", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("without lustre; cardboard ... picture"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mat", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "matte", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "matt", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("make matte "), + comment: Some("Ox Amer thinks its matte, M-W: mat"), + }, + Entry { + variants: &[ + Variant { + word: "mats", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mattes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "matts", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("make matte"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mat", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, most uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mats", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, most uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mat\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, most uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, some uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mattes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, some uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matte\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise, some uses"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("regardless of how mat is spelled"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("regardless of how mat is spelled"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Matt", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" Matthew"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("materialization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "materialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("materialize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "materialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("materializer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "materializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materializers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "materializer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "materialiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maternalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maternalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maternalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maternalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maternalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maternalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maternalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maternalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maternalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maters (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "matres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("math (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "math", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maths", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mathematicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mathematicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mathematization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mathematization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mathematize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mathematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mathematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mathematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("matronize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "matronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "matronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "matronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "matronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "matronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "matronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Matthean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Matthean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Matthaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maudlinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maudlinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maudlinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maudlinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maudlinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mauger (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mauger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maugre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maven (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maven", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mavin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mavens", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mavins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maven\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mavin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maximization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maximization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maximize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maximize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("maximizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maximizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maximizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "maximiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mazurka (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mazurka", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mazourka", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mazurkas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mazourkas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mazurka\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mazourka\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meager (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meager", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "meagre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meagerrer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "meagrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meagerrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "meagrest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meandrine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meandrine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maeandrine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meandriniform (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meandriniform", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maeandriniform", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meanie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meanie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "meany", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meanie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "meany\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meany", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meany\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanicalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mechanizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mechanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mechanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mechaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meck (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meck", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "moeck", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Med (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Med", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Moed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Med\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Moed\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "medalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "medalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medalist (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medalist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "medallist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medalists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "medallists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medalist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "medallist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mediatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mediatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mediatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mediatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medicalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medicalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medicalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medicalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "medicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medieval (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medieval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaeval", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medievals", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaevals", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medieval\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaeval\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medievalism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medievalism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaevalism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medievalisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaevalisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "medievalism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaevalism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("medievally (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "medievally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mediaevally", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mediterraneanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mediterraneanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mediterraneanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mediterraneanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mediterraneanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mediterraneanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mediterraneanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mediterraneanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mediterraneanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mediumization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mediumization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediumisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediumizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediumisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediumization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediumisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mediumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mediumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mediumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mediumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("megameter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "megameter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "megametre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("megbote (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "megbote", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "maegbote", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("megerg (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "megerg", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "megaerg", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melanemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melanemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "melanaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melanemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melanemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "melanaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "meloe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "melaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melenic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "melaenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Melie (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Melie", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Meliae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Melie\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Meliae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "melinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melitemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melitemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "melitaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melithemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melithemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "melithaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mellon (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mellon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "moellon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melodization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melodization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melodize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melodizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melodizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melodramatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melodramatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodramatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("melodramatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "melodramatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodramatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodramatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodramatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodramatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodramatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "melodramatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "melodramatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorialize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorializer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorializers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorializer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorialiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("memorizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "memorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "memorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "memoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("menad (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maenad", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "menad", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maenads", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "menads", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "maenad\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "menad\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("menadic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "maenadic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "menadic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mendelize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mendelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mendelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mendelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mendelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mendelize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mendelise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meningorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meningorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "meningorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("menorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "menorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "menorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "menorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "menorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("menorrheic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "menorrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "menorrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mense (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mensae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mentalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meow (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meow", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "miaow", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meowed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "miaowed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meowing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "miaowing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meows", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "miaows", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meow\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "miaow\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mephitine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mephitine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mephitinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mera (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mera", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Maera", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mera\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Maera\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercerization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercerize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercerizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercerizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "merceriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercerisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercerizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "merceriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("merchandise (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "merchandise", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandize", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "merchandised", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandized", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "merchandising", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandizing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "merchandises", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandizes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("merchandiser (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "merchandiser", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandizer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "merchandisers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandizers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "merchandiser\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "merchandizer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercurialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercurialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercurialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercurialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mercurize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mercurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mercurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mercurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Meroe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Meroe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Meroae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Meroe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Meroae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesmerizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesmerizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesmerizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesmerizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesmerization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesmerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesmerize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesmerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesmerizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesmerizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmeriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmerisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesmerizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesmeriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesoglea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesoglea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mesogloea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesogleas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mesogloeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesogleal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesogleal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mesogloeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesprize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesprise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesprizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mesprises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mesquite (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mesquite", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mesquit", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("o: possible austrian variant"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesquites", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mesquits", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("o: possible austrian variant"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mesquite\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mesquit\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("o: possible austrian variant"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metabolizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metabolizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metabolizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metabolizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metabolize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metabolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metabolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metabolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metabolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metabolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metacenter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metacenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metacentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metacenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metacentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metacenter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metacentre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metagrabolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metagrabolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrabolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrabolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrabolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrabolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrabolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrabolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrabolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metagrobolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metagrobolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrobolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrobolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrobolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrobolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrobolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metagrobolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metagrobolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metal (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "metalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "metalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metallises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "metallizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metamerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metamerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metamerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metamerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metamerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metamerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metamerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metamerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metamerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metamerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metamerizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metameriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metamerized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metamerised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metaphonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metaphonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metaphonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metaphorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metaphorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metaphorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metaphysicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metaphysicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphysicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metaphysicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metaphysicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metastasize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metastasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metastasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metastasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metastasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metastasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metastasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metastasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metastasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metathesize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metathesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metathesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metathesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metathesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metathesizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metathesising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metathesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metathesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meteorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meteorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "meteorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meteorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "meteorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meteorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "meteorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meteorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meteorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "meteorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meteorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "meteorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meter (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("measuring device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("measuring device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("measuring device"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "metre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter, rhythmic pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "metres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter, rhythmic pattern"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "meter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "metre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter, rhythmic pattern"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metergram (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metergram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metregram", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("meterless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "meterless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metership (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metership", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metreship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metestrus (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metestrus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metoestrus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metestrus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metoestrus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("methadone (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "methadone", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "methadon", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methadones", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "methadons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methadone\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "methadon\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("methemoglobin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "methemoglobin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "methaemoglobin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("methodization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "methodization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("methodize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "methodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("methodizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "methodizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "methodizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "methodiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metope (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "metopae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metricize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metricized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metricised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metricizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metricising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metrize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metropolitanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metropolitanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metropolitanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("metropolitanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "metropolitanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metropolitanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metropolitanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metropolitanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metropolitanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metropolitanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "metropolitanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "metropolitanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mexicanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mexicanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mexicanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mexicanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mexicanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mexicanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mexicanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micelle (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micelle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micellae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micresthete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micresthete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micraesthete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microcolorimeter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microcolorimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microcolourimeter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microcolorimetric (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microcolorimetric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microcolourimetric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microcolorimetrically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microcolorimetrically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microcolourimetrically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microcolorimetry (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microcolorimetry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microcolourimetry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microliter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microlitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microlitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microlitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micrometer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micrometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gauge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micrometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gauge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micrometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("gauge"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micrometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micrometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micrometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micrometres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micrometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micrometre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric meter"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micromillimeter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micromillimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micromillimetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micromillimeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micromillimetres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micromillimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "micromillimetre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microminiaturization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microminiaturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microminiaturize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microminiaturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microminiaturizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microminiaturizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microminiaturizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microminiaturisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micronization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micronize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micropaleontologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micropaleontologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "micropalaeontologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micropaleontologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "micropalaeontologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micropaleontology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micropaleontology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "micropalaeontology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micropaleontologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "micropalaeontologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micropaleontology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "micropalaeontology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("micropolarization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "micropolarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micropolarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micropolarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micropolarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "micropolarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "micropolarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microscopize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microscopize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microscopise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "microscopizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "microscopises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("microspheric (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "microspheric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "microsphaeric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Midlandize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Midlandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Midlandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Midlandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Midlandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Midlandize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Midlandise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("midsize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "midsize", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "midsized", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("midwife (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "midwifed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "midwived", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "midwifing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "midwiving", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("migniardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "migniardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "migniardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("militarization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "militarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "militarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "militarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("militarize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "militarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "militarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "militarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "militarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "militarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("milligram (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "milligram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "milligramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milligrams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "milligrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milligram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "milligramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("milliliter (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "milliliter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millilitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milliliters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millilitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milliliter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millilitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("millimeter (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "millimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millimetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millimeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millimetres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "millimetre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("millionaire (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "millionaire", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millionnaire", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millionaires", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millionnaires", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millionaire\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millionnaire\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("millionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "millionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "millionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "millionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("millipede (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "millipede", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millepede", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millipedes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millepedes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "millipede\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "millepede\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("milometer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "milometer", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mileometer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milometers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mileometers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "milometer\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mileometer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Miltonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Miltonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Miltonizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Miltonising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mineralizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mineralizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mineralization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mineralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mineralize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mineralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mineralizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mineralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mineralogize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mineralogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mineralogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mineralogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miniaturization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miniaturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miniaturizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miniaturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miniaturize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miniaturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miniaturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miniaturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miniaturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miniaturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("minibuses (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "minibuses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "minibusses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("minimization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "minimization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("minimize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "minimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("minimizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "minimizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minimizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "minimiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("minuscule (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "minuscule", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "miniscule", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minuscules", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "miniscules", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "minuscule\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "miniscule\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miraculize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miraculize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miraculise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miraculized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miraculised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miraculizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miraculising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miraculizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miraculises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mirrorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mirrorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mirrorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mirrorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mirrorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misadvize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misadvize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misadvise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misalphabetize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misalphabetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misalphabetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misalphabetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misalphabetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misanthropize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misanthropize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misanthropise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misanthropized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misanthropised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misanthropizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misanthropising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misanthropizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misanthropises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misauthorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misauthorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misauthorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misauthorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misauthorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misauthorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misauthorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misauthorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misauthorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misauthorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misauthorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misauthorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misbaptize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misbaptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misbaptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misbaptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misbaptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misbehavior (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misbehavior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misbehaviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misbehaviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misbehaviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misbehavior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misbehaviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miscanonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miscanonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miscanonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miscanonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "miscanonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mischaracterization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mischaracterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mischaracterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mischaracterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mischaracterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mischaracterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mischaracterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mischaracterize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mischaracterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mischaracterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mischaracterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mischaracterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miscolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miscolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "miscolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miscolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "miscoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miscoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "miscolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miscolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "miscolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miscolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "miscolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miscoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miscoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "miscolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misdemeanor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misdemeanor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misdemeanour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misdemeanors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misdemeanours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misdemeanor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "misdemeanour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misemphasize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misjudgment (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misjudgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misjudgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misjudgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misjudgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misjudgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misjudgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mislabel (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mislabeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mislabelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mislabeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mislabelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mislabor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mislabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mislabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mislabored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mislaboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mislaboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mislabouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mislabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mislabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mislabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mislabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misopedia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misopedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misopaedia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misopedism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misopedism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misopaedism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misopedist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misopedist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misopaedist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misopedist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "misopaedist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misorganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misorganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misorganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misprizal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misprizal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misprisal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misprize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "misprise", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misprized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "misprised", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misprizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "misprising", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misprizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "misprises", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misprizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misprizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mispriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misrealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misrealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misrealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misrealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misrealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misrecognize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misrecognize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misrecognise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "misrecognizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "misrecognises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("misrouting (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "misrouting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "misrouteing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missilery (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missilery", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "missilry", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missilery\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "missilry\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missionarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missionarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missionizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missioniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "missionisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("missus (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "missus", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "missis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missuses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "missises", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "missus\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "missis\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mitered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mitering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miterer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miterer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miterer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitrer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miterflower (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miterflower", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitreflower", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("miterwort (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "miterwort", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitrewort", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miterworts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitreworts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "miterwort\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mitrewort\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mithridatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mithridatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mithridatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mithridatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mithridatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mithridatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mithridatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mithridatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mithridatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mobilizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mobilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mobilization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mobilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mobilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mobilizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mobilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mobilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mobiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("model (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modeling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "modelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modernizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modernizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modernization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modernization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modernize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modernizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modernizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moderniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modernisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modernizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moderniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modularization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("modularize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "modularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "modularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "modularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moggy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moggy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "moggie", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moggy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "moggie\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mohammedanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mohammedanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mohammedanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mohammedanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mohammedanizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mohammedanising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moisturization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moisturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moisturize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moisturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moisturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moisturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moisturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moisturizer (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moisturizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moisturizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moisturizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moisturiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("molarization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "molarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mold (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mold", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mould", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulded", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molding", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulding", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mold\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mould\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moldings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molding\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulding\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("molder (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "molder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molder\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulder\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moldered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldered", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moldering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldering", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulders", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moldy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moldy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moldier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moldiest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "mouldiest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("molluscan (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "molluscan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "molluskan", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mollusk (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mollusk", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mollusc", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mollusks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "molluscs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mollusk\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mollusc\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Molochize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Molochize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Molochise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Molochizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Molochises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Molochize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Molochise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molochize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molochise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molochized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molochised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molochizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molochising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molochizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "molochises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("molt (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "molt", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moult", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molt\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moult\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulted", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moulting", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "molts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "moults", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mom (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mom", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mom\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mum\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("mother"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("silent"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mommy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mommy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mommie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mommy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mommie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monarchize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monarchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monarchized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monarchizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monarchizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monarchizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monarchizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monarchizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monarchisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monasticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monasticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monasticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monasticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monasticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monecian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monecian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "monoecian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monecious (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monoecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monecious", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monestrous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monestrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "monoestrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monetization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monetize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moneyed (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moneyed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "monied", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Mongolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Mongolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Mongolizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Mongolising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mongrelization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mongrelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mongrelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mongrelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mongrelize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mongrelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mongrelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mongrelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mongrelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongrelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mongrelizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mongrelizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mongreliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moniker (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moniker", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "monicker", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monikers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "monickers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moniker\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "monicker\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monochordize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monochordize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monochordise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monochordizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monochordises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monologist (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuists", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuist\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monologize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monologue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monologue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monolog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "monolog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monologuize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monologuize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologuized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologuizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monologuizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monologuises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monometalism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monometalism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "monometallism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monometalist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monometalist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "monometallist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monophthongize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monophthongize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monophthongise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monophthongized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monophthongised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monophthongizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monophthongising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monophthongizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monophthongises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monopolizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monopolizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monopolization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monopolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monopolize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monopolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monopolizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monopolizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopoliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopolisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monopolizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monopoliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monotonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monotonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monotonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monotonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monotonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monumentalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monumentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monumentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monumentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("monumentalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "monumentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monumentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monumentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "monumentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "monumentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moralization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moralize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moralizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("moralizingly (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "moralizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "moralizinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "moralisinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Moravianized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Moravianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moravianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Moravianizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moravianiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Moravianized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moravianised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morbidize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morbidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morbidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morbidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morbidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Morea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Morea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Moraea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Morea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Moraea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morne (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mourne", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morningly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morningly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mourningly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morphinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morphinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morphinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morphinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morphinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morphinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morphinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morphinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morphinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morphinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morphinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morphinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morsel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "morselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "morselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morselization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morselization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morselisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morselizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morselisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morselization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morselisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morselize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morselize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morselise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "morselizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "morselises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mortalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mortalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mortarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mortarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mortarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mortgagor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mortgagor", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortgager", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortgagors", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortgagers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortgagor\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortgager\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mortise (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mortise", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortice", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortised", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "morticed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortising", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "morticing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortises", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortices", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mortise\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mortice\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("morule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "morule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "morulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Moslemize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Moslemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moslemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Moslemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moslemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Moslemize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Moslemise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("motorization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "motorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "motorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "motorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("motorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "motorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "motorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "motorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "motorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "motorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mousy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mousy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mousey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("movability (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "movability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "moveability", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("movable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "movable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "moveable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "movables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "moveables", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "movable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "moveable\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("movableness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "movableness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moveableness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "movablenesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moveablenesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("movably (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "movably", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moveably", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mucorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mucorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mucorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mucose (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mucose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mucosae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mujahideen (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mujahideen", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mujahedin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mujahedeen", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mujahideen\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "mujahedin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mujahedeen\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multicolor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multicolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multicolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multicolored (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multicoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multicoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "multicoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multicolorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multicolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "multicolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multifibered (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multifibered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "multifibred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multifibereds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "multifibreds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multifibered\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "multifibred\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multileveled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multileveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "multilevelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("multiplexer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "multiplexer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "multiplexor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multiplexers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "multiplexors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "multiplexer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "multiplexor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("municipalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "municipalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("municipalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "municipalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("municipalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "municipalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "municipalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "municipalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("murena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "murena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "muraena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "murenas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "muraenas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("muscularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "muscularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "muscularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "muscularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "muscularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("museumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "museumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "museumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "museumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "museumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("musicalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "musicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "musicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "musicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("musicalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "musicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "musicalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "musicalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "musicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "musicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Muslim (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Muslim", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Moslem", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Muslim\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Moslem\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mustache (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mustache", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "moustache", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mustaches", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "moustaches", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mustache\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "moustache\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mustached (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mustached", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "moustached", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mustachio (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mustachio", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moustachio", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mustachio\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moustachio\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mustachioed (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mustachioed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "moustachioed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mutagenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mutagenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutagenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutagenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutagenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutagenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutagenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutagenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutagenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mutualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mutualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mutualize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mutualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mutualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mutualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mycohemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mycohemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mycohaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myelinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myelinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "myelinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "myelinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "myelinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "myelinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "myelinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myelocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myelocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "myelocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myelocythemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myelocythemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myelocythaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mylonitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mylonitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mylonitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mylonitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mylonitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mylonitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mylonitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mylonitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mylonitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myna (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myna", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mynah", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mynas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mynahes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "myna\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "mynah\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "myocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myohematin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myohematin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myohaematin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myrialiter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myrialiter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "myrialitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myriameter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myriameter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "myriametre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mysticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mysticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mysticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mysticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mysticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythicizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythicizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythiciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythicizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythicisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythicizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythiciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythologization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythologize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "mythologizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythologiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythopeic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythopeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mythopoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythopeist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythopeist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "mythopoeist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythopoetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythopoetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythopoetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythopoetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythopoetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythopoetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("mythopoetizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "mythopoetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "mythopoetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myxameba (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myxameba", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "myxamoeba", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myxedema (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myxedema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxoedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "myxedemas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxoedemas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "myxedema\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxoedema\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myxedematous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myxedematous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxoedematous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myxedemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myxedemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxoedemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("myxemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "myxemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "myxaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naan (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naan", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nan", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naan\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nan\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Nabateans (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Nabateans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Nabataeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Nabathean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Nabathean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Nabathaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Nabathean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Nabathaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nakedize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nakedize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nakedise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nakedizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nakedises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nanogram (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nanogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nanogramme", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nanograms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nanogrammes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nanometer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nanometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nanometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nanometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nanometres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nanometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nanometre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("napea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "napea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "napaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naphthalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naphthalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naphthalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naphthalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naphthalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naphthalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naphthalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naphthalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naphthalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Napoleonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Napoleonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Napoleonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Napoleonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Napoleonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Napoleonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Napoleonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("narc (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "narc", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nark", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "narks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narc\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nark\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nark", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("narcotization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "narcotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcotizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcotization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("narcotize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "narcotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "narcotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "narcotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nasalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nasalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nasalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nasalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nasalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nasalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nasalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nasalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nasalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nasalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nationalization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nationalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nationalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nationalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nationalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nationaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naturalization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naturalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naturalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naturalizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naturalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naturize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "naturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("naught (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "naught", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nought", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("digit zero"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naughts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "noughts", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("digit zero"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naught\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nought\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some("digit zero"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naught", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nought", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: Some("worthless"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naught", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" nothing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naughts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" nothing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "naught\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" nothing"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nebularization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nebularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nebularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nebularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nebulization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nebulization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nebulize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nebulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nebulizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nebulizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebuliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebulisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nebulizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nebuliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("necremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "necremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "necraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("necrotize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "necrotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "necrotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "necrotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "necrotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "necrotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "necrotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "necrotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "necrotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nectarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nectarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nectarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nectarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nectarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nectarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nectarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nectarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nectarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neebor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neebor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "neebour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neencephalon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neencephalon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "neoencephalon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("negligee (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "negligee", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "neglig", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "negligees", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "negligs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "negligee\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "neglig\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Negritize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Negritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negritize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Negritized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Negritized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negritized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Negritizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Negritizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negritizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negritising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Negroization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Negroization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Negroize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Negroize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Negroizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Negroising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighbor (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighbor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighbors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighboress (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighboress", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbouress", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborhood (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborhood", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourhood", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborhoods", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourhoods", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborhood\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourhood\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "neighbourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborliness (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborliness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourliness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlinesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlinesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborliness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourliness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborly (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neighborship (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neighborship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neighborship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "neighbourship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Neogea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Neogea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Neogea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Neogeal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Neogeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Neogeal\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaeal\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Neogean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Neogean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Neogeic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Neogeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Neogeic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Neogaeic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neologization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neopaganize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neopaganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neopaganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neopaganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neopaganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neopaganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neopaganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neopaganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neopaganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neoterize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neoterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neoterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neoterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neoterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neoterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neoterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neoterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neoterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nephrectomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nephrectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nephrectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nephrectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nephrectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nephrectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nephrectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nephrocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nephrocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nephrocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nephrotomize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nephrotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nephrotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nesslerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nesslerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nesslerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nesslerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nesslerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nesslerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nesslerizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nesslerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nesslerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("net (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "net", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nett", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "netts", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "net\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nett\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neurepithelium (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neurepithelium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "neuroepithelium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neurocele (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neurocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "neurocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neurocelian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neurocelian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "neurocoelian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neuronal (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neuronal", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "neuronic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neuroticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neuroticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neuroticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neuroticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neuroticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neutralization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neutralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neutralize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neutralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neutralizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neutralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "neutralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "neutraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("neves (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "neves", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "naeves", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nevoid (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nevoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "naevoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Newmanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Newmanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Newmanizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Newmanising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("newspaperized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "newspaperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "newspaperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "newspaperizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "newspaperiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "newspaperized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "newspaperised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nickel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nickeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nickelization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nickelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nickelize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nickelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nickelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nickelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nicotinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nicotinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nicotinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nicotinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nicotinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nicotinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nicotinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nicotinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nicotinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nielled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nielled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nielloed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("niger (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "niger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nigre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("niggardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "niggardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "niggardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "niggardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "niggardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "niggardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "niggardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "niggardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "niggardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("night (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "night", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nite", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nights", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nites", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "night\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nite\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "Ox labels nite as an informal spelling", + ], + }, +Cluster { + header: Some("nightie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nightie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nighty", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nightie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "nighty\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nightingalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nightingalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nightingalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nightingalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nightingalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Nipponize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Nipponize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Nipponise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Nipponizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Nipponises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Nipponize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Nipponise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("niter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "niter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "niters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "niter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nitridization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nitridization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitridisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitridizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitridisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitridization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitridisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nitridize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nitridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nitrogenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nitrogenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitrogenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitrogenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nitrogenize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nitrogenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitrogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitrogenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitrogenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nitrogenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nitroglycerin (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nitroglycerin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nitroglycerine", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitroglycerins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nitroglycerines", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nitroglycerin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nitroglycerine\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nodalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nodalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nodalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nodalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nodalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nodulize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nodulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nodulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nodulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Noemon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Noemon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Noaemon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Noemon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Noaemon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nomadization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nomadization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nomadizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nomadization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nomadize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nomadize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nomadized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nomadizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nomadizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nomadises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nominalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nominalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nominalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nominalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nominalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nominalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nominalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nominalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nominalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonacknowledgment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonacknowledgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonacknowledgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonacknowledgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonacknowledgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonacknowledgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonacknowledgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonanemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonanemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nonanaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonanesthetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonanesthetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonanaesthetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonanaesthetized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonapostatizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonapostatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonapostatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonapostatizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonapostatisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonapostatizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonapostatising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncanonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncanonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncanonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncanonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncanonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncanonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncanonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncartelized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncartelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncartelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncartelizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncarteliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncartelized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncartelised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncatechizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncatechizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncatechisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncatechizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncatechisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncatechizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncatechisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncivilized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncivilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonciviliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncivilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncivilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorableness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncolorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncolorfast (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncolorfast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "noncolourfast", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncrystallizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncrystallizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncrystallized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncrystallized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystalliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noncrystallizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noncrystallizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "noncrystallizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noncrystallising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nondemobilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nondemobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nondemobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nondemobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nondemobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nondemobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nondemobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nondialyzing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nondialyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nondialysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nondialyzings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nondialysings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nondialyzing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nondialysing\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nondimensionalize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nondimensionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nondimensionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nondimensionalized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nondimensionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nondimensionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonecumenic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonecumenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoecumenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonecumenical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonecumenical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoecumenical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonencyclopedic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonencyclopedic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "nonencyclopaedic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for encyclopedia", + ], + }, +Cluster { + header: Some("nonesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonesthetical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonesthetical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonaesthetical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonesthetically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonesthetically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonaesthetically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonfavorite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonfavorite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonfavourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonfavorites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonfavourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonfavorite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonfavourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonflavored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonflavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonflavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonfulfillment (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonfulfillment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonfulfilment", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonfulfillments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonfulfilments", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonfulfillment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonfulfilment\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nongalvanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nongalvanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongalvanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nongalvanizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongalvaniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nongalvanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongalvanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nongelatinizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nongelatinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongelatinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nongelatinizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongelatinisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nongelatinizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nongelatinising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonhydrolyzable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonhydrolyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonhydrolysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonhydrolyzables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonhydrolysables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonhydrolyzable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonhydrolysable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonimmunized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonimmunized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonimmunised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonimmunizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonimmuniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonimmunized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonimmunised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonionized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonionizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonioniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonionized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonionised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonionizing (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonionizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonionisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonionizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonionising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonlocalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonlocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonlocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonlocalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonlocaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonlocalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonlocalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonmagnetizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonmagnetizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonmagnetisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonmagnetizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonmagnetisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonmagnetizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonmagnetisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonnitrogenized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonnitrogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonnitrogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonnitrogenizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonnitrogeniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonnitrogenized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonnitrogenised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonoxidizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonoxidizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonoxidizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonoxidizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonoxidizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonoxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonoxidizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonoxidizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonoxidising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonparlor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonparlor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonparlour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonparlors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonparlours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonparlor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "nonparlour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonpenalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonpenalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpenalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpenalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpenaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpenalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpenalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonphosphorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonphosphorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonphosphorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonphosphorizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonphosphoriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonphosphorized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonphosphorised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonpolarizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonpolarizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpolarizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpolarizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonpolarized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonpolarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonpolarizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonpolarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpolarizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonpolarizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonpolarising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonrationalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonrationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrationalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrationaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrationalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrationalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonrealization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonrealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrealizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrealisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrealization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrealisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonrecognized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonrecognized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrecognised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrecognizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrecogniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonrecognized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonrecognised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonschematized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonschematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonschematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonschematizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonschematiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonschematized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonschematised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonsensitized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonsensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsensitizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsensitiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsensitized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsensitised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonspecialized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonspecialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonspecialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonspecializeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonspecialiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonspecialized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonspecialised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonstandardized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonstandardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstandardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonstandardizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstandardiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonstandardized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstandardised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonstylized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonstylized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstylised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonstylizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstyliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonstylized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonstylised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonsuccor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonsuccor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsuccour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonsympathizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonsympathizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsympathiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsympathizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsympathisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsympathizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsympathiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonsynthesized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonsynthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsynthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsynthesizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsynthesiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonsynthesized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonsynthesised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nontemporizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nontemporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nontemporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nontemporizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nontemporisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nontemporizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nontemporising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonutilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonutilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonutilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonutilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonutiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonutilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonutilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonvisualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonvisualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvisualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvisualizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvisualiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvisualized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvisualised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonvolatilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonvolatilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvolatilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvolatilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvolatiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvolatilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvolatilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nonvulcanizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nonvulcanizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvulcanisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvulcanizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvulcanisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nonvulcanizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nonvulcanisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("norice (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "norice", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nourice", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("normalizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "normalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("normalization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "normalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("normalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "normalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("normalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "normalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Normanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Normanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Normanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Normanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "normanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "normanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Normanizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Normanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Normanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Normaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Northernize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Northernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Northernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Northernize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Northernise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "northernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "northernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "northernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "northernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "northernizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "northernising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "northernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "northernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nosize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nosize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nosise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nosohemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nosohemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "nosohaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nosy (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nosy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nosey", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nosies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "noseys", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nosy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "nosey\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("notarization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "notarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "notarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "notarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "notarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("notarize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "notarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "notarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "notarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "notarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "notarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "notarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "notarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "notarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("noter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "noter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "notre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nothingize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nothingize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nothingise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nothingizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nothingises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Notogea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Notogea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Notogaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Notogea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Notogaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nounize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nounize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nounise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nounizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nounises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("novelization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "novelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("novelize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "novelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("novelizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "novelizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noveliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "novelisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "novelizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "noveliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("novene (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "novene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "novenae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nuclearization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nuclearization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nuclearizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nuclearize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nuclearize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nuclearized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nuclearizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nuclearizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuclearises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("numskull (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "numskull", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "numbskull", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "numskulls", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "numbskulls", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "numskull\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "numbskull\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nuptialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nuptialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuptialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "nuptializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "nuptialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("nympheum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "nympheum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "nymphaeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Obe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Obe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Oboe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Obe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Oboe\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("obelize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "obelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "obelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "obelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "obelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "obelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "obelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "obelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "obelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("objectivize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "objectivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("objectization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "objectization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("objectize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "objectize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "objectizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "objectises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oblivionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oblivionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oblivionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oblivionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oblivionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Occidentalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Occidentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Occidentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Occidentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Occidentalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Occidentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Occidentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Occidentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Occidentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Occidentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "occidentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "occidentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "occidentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "occidentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "occidentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "occidentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "occidentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "occidentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ocher (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ocher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ochered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ochering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ocherrer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ocherrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochrest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ochers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ocher\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ocherish (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ocherish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochreish", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ocherous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ocherous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochreous", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ocherouser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochreouser", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ocherousest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochreousest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ochery (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ochery", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ochrey", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("octet (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "octet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "octette", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "octets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "octettes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "octet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "octette\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ocyrrhoe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ocyrrhoe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ocyrrhoae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ocyrrhoe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ocyrrhoae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odored (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odorful (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odorful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorfuller", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourfuller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorfullest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourfullest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "odorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "odorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "odorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "odorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odorizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "odoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odorless (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "odorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("odorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "odorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "odourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("offense (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "offense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "offence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "offenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "offences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "offense\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "offence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("offenseless (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "offenseless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "offenceless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "offenselesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "offencelesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "offenselessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "offencelessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("offenselesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "offenselesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "offencelesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("offenselessly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "offenselessly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "offencelessly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("officialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "officialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "officialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "officializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "officialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "officialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "officialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("officialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "officialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "officialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "officializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "officialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("OK (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "OK", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "okay", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "OK\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "okay\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "OKed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "okayed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "OKing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "okaying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "OKs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "okays", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "OK", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" Oklahoma"), + comment: None, + }, + ], + notes: &[ + "OK is generally the preferred form, but it is very difficult to", + "misspell one for the other and in some contexts okay is preferred,", + "so I am marking these as equal variants. Note that the Canadian", + "Ox. has okay as the primary form.", + ], + }, +Cluster { + header: Some("oleomargarine (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oleomargarine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "oleomargarin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oleomargarines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "oleomargarins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oleomargarine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "oleomargarin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oligemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oligemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oligaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oligocythemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oligocythemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oligocythaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("olpe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "olpe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "olpae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Olympianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Olympianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Olympianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Olympianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Olympianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Olympianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Olympianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("omber (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "omber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ombre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ombers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ombres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "omber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ombre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("omelet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "omelet", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "omelette", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "omelets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "omelettes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "omelet\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "omelette\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oneyer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oneyer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oneyre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oneyers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oneyres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("onionized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "onionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "onionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "onionizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "onioniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "onionized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "onionised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ontologize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ontologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ontologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("onward (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "onward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "onward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "onwards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adverb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ooglea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ooglea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oogloea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oophorectomize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oophorectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oophorectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oophorectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oophorectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oophorectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oophorectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oophorectomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oophorectomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("opaled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "opaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "opalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("opalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "opalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "opalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "opalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "opalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "opalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "opalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("operationalization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "operationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "operationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("operationalize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "operationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("operationalized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "operationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("operatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "operatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "operatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "operatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "operatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "operatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("opiniaster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "opiniaster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "opiniastre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("opiniater (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "opiniater", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "opiniatre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optimalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optimalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optimalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optimalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optimization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optimization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optimize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optimizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optimizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optimizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optimiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("optionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "optionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "optionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "optionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orang (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orang", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ourang", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orangs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "ourangs", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orangize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orangize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orangise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orangizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orangises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orangutan (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orangutan", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "orangutang", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orangutans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "orangutangs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orangutan\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "orangutang\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oratorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oratorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oratorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oratorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oratorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orchester (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orchester", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orchestre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organdy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organdy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organdie", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organdy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organdie\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organization (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizational (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationaler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationalest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationals", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationals", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizational\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisational\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizationally (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizationally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationally", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationallier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationallier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationalliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationalliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizationist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizationist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizationist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisationist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organize (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("organizer (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "organizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "organizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "organiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orientalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orientalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Orientalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Orientalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Orientalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Orientalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Orientalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Orientalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Orientalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orientization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orientization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orientize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orientize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orientizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orientises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ornamentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ornamentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ornamentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ornamentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ornamentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ourology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ourologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orphanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orphanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orphanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orphanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orphanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orsel (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orsel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "oursel", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthocenter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthocenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orthocentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthocenters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orthocentres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthocenter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orthocentre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthogonalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthogonalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthogonalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthogonalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthogonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthogonalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthogonalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthogonalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthogonalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthographize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthographize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthographise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthographized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthographized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthographised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthographizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthographizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "orthographising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedic (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedicer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedicest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedicest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedics\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedics\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedically (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedicallier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedicallier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedicalliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedicalliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedist (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopedy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopedy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "orthopedies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "orthopaedies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orthopnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("orthopneic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "orthopneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "orthopnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("osteopedion (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "osteopedion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "osteopaedion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ostracizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ostracizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ostracization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ostracization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ostracize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ostracize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ostracizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ostracizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostraciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostracisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ostracizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ostraciser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("othematoma (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "othematoma", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "othaematoma", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("otorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "otorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "otorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ottomanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ottomanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ottomanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ottomanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ottomanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ottomanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ottomanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ottomanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Ottomanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outcavil (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outcaviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outcavilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outcaviling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outcavilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outclamor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outclamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outclamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outclamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outclamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outclamor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outclamour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outerness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outerness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outreness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outhumor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outhumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outhumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outhumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outhumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outhumoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outhumouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outhumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outhumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outhumor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outhumour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outhyperbolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outhyperbolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "outhyperbolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outhyperbolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "outhyperbolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outlabor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outlabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outlabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outlabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outlabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outlabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outlabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outluster (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outluster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outlustre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outmaneuver (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outmaneuver", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "outmanoeuvre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outmaneuvered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "outmanoeuvred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outmaneuvering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "outmanoeuvring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outmaneuvers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "outmanoeuvres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outrival (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outrivaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outrivalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outrivaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "outrivalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outsavor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outsavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outsavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outsavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outsavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outsize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outsize", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "outsized", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outsplendor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outsplendor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsplendour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outsplendors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsplendours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outsplendor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "outsplendour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("outtyrannize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "outtyrannize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "outtyrannise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "outtyrannizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "outtyrannises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ovalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ovalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ovalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ovalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ovalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ovalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ovalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ovariectomized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ovariectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ovariectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overagonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overagonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overagonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overagonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overagonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overanalyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overanalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overanalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overanalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overanalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overbrutalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overbrutalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overbrutalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overbrutalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overbrutalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcapitalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcapitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcapitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcapitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcapitalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcapitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcapitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcapitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcapitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcapitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcentralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcentralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcentralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcentralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcentralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcentralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcentralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcentralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcentralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcentralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcentralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcentralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcivilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcivilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcivilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcivilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcivilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcivilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overclamor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overclamor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overclamour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overclamors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overclamours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overclamor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overclamour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overcolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overcolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overcolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overcolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overcolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overcolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overcriticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overcriticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcriticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overcriticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overcriticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overdoctrinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overdoctrinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdoctrinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overdoctrinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdoctrinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overdramatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overdramatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdramatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overdramatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdramatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overdramatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdramatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overdramatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overdramatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overemotionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overemotionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemotionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overemotionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemotionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overemphasize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overemphasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overemphasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overemphasizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overemphasizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overemphasizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overemphasisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overfavor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overfavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overfavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overfavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overfavorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overfavorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overfavorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overfavorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overfavorably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overfavorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overfavorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overfavourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overfertilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overfertilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overfertilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overgeneralize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overgeneralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overgeneralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overgeneralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overgeneralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overgeneralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overgeneralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overgeneralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overgeneralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overhonor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overhonor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overhonour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overhonors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overhonours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overhonor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "overhonour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overhumanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overhumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overhumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overhumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overhumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overindustrialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overindustrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overindustrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overindustrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overindustrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overindustrialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overindustrialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overindustrialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overindustrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overindustrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overindustrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overindustrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overjudgment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overjudgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overjudgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overjudgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overjudgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overjudgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overjudgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overlabor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overlabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overlabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overlabored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overlaboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overlaboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overlabouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overlabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overlabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overlabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "overlabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overnationalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overnationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overnationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overnationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overnationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overnationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overnationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overrapturize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overrapturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overrapturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overrapturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overrapturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overrationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overrationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overrationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overrationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overrationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oversentimentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oversentimentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oversentimentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oversentimentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oversentimentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oversize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oversize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oversized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overspecialization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overspecialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overspecializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overspecialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overspecialize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overspecialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overspecialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overspecializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overspecializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overspecialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oversystematize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oversystematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oversystematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oversystematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oversystematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overunionized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overunionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overunionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overunionizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overunioniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overunionized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overunionised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overurbanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overurbanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overurbanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overurbanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overurbanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overurbanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overurbanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overutilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overutilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overutilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("overwomanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "overwomanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overwomanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "overwomanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "overwomanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ower (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ower", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "owre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("owercome (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "owercome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "owrecome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("owerword (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "owerword", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "owreword", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxalemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxalemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oxalaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxidizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxygenizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxygenizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxygenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxygenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxygenizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxygenizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxygenizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxygenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygeniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygenisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxygenizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "oxygeniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxyhematin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxyhematin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oxyhaematin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("oxyhemoglobin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "oxyhemoglobin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oxyhaemoglobin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "oxyhemoglobins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "oxyhaemoglobins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ozena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ozena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ozaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ozoena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ozonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ozonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ozonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ozonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ozonizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ozonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ozonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ozoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pachyemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pachyemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pachyaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pachyhemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pachyhemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pachyhaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("packetization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "packetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("packetize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "packetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "packetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "packetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "packetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("packetizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "packetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "packetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "packetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "packetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paeanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paeanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paeanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paeanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paeanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paganization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paganize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paganizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paganizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paganizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paganiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pagine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pagine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paginae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pajama (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pajama", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pyjama", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pajamas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pyjamas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pajama\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pyjama\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pajamas\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pyjamas\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pajamaed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pajamaed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyjamased", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palame (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palame", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "palamae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palatalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palatalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palatalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palatalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palatization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleanthropic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleanthropic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeanthropic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Palearctic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Palearctic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaearctic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleencephalon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleencephalon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeencephalon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleencephalon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeencephalon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoencephalon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoencephalon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoencephalon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoencephalon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleentomology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleentomology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "palaeentomology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleethnologic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleethnologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeethnologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoethnologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleethnological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleethnological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeethnological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoethnological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleethnologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleethnologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeethnologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoethnologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleethnology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleethnology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeethnology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoethnology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleichthyologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleichthyologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeichthyologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleichthyology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleichthyology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeichthyology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoalchemical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoalchemical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoalchemical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoanthropic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoanthropic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoanthropography (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoanthropography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoanthropological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoanthropological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoanthropologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoanthropologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoanthropologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoanthropology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoanthropology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoanthropologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoanthropologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paleoanthropus (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paleoanthropus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeoanthropus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paleoanthropus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeoanthropus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoatavism (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoatavism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoatavism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoatavistic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoatavistic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoatavistic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobiogeography (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobiogeography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiogeography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobiologic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobiologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobiological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobiological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobiologist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobiologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobiologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobiologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobiology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobiology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobiologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobiology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobiology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobotanic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobotanic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobotanical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobotanical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobotanically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobotanically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobotanist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobotanist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobotanists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleobotany (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleobotany", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotany", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobotanies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotanies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleobotany\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeobotany\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoceanography (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoceanography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoceanography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleochorology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleochorology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeochorology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoclimatic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoclimatic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoclimatologic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoclimatologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoclimatological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoclimatological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoclimatologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoclimatologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoclimatologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoclimatologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoclimatology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoclimatology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoclimatologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoclimatology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoclimatology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paleoconcha (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paleoconcha", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeoconcha", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paleoconcha\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeoconcha\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocosmic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocosmic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocosmic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocosmology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocosmology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocosmology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocrystal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocrystal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocrystal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocrystallic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocrystallic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocrystallic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocrystalline (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocrystalline", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocrystalline", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocrystic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocrystic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocrystic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleocyclic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleocyclic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeocyclic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleodendrologic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleodendrologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeodendrologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleodendrological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleodendrological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeodendrological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleodendrologically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleodendrologically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeodendrologically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleodendrologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleodendrologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeodendrologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleodendrology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleodendrology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeodendrology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoecologic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoecologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoecological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoecological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoecologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoecologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoecologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoecologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoecology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoecology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoecologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoecology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoecology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoentomologic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoentomologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoentomologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoentomological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoentomological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoentomological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoentomologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoentomologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoentomologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoentomologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoentomologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoeremology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoeremology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoeremology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoethnic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoethnic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoethnography (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoethnography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoethnography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleofauna (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleofauna", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeofauna", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogenesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleogenesis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogenesis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogenetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeographer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeographer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleogeographers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeographic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeographic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeographical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeographical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeographically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeographically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeography (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleogeographies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeographies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleogeology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleogeology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeogeology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoglaciology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoglaciology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoglaciology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoglyph (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoglyph", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoglyph", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleograph (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleograph", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeograph", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleographic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleographic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeographic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleographical (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleographical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeographical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleographically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleographically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeographically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleographist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleographist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeographist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoherpetologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoherpetologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoherpetologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoherpetology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoherpetology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoherpetology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleohistology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleohistology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeohistology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleohydrography (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleohydrography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeohydrography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoichthyology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoichthyology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoichthyology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolatry (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolatry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolatry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolimnology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolimnology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolimnology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolith (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolith", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolith", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleoliths", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoliths", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleolith\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolith\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolithic (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolithic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolithic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paleolithic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeolithic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolithical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolithical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolithical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolithist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolithist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolithist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolithoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolithoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolithoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleolithy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleolithy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeolithy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleomagnetism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleomagnetism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeomagnetism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleomagnetisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeomagnetisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleomagnetism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeomagnetism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleometallic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleometallic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeometallic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleometeorological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleometeorological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeometeorological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleometeorology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleometeorology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeometeorology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontographic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontographic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontographic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontographical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontographical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontographical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontography (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleontographies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontographies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleontography\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontography\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontologic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontological (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontologically (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontologically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontologically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontologist (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleontologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleontologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleontology (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleontology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleontology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeontology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopathologic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopathologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopathological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopathological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopathologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopathologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleopathologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopathology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopathology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleopathologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopathologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopedology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopedology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopedology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophysiography (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophysiography", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophysiography", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophysiology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophysiology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophysiology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophytic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophytic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophytic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophytological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophytological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophytological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophytologist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophytologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophytologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleophytology (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleophytology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeophytology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleoplain (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleoplain", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeoplain", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopotamology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopotamology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopotamology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopsychic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopsychic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopsychic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopsychological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopsychological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopsychological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleopsychology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleopsychology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeopsychology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleornithological (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleornithological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeornithological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleornithology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleornithology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeornithology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleostriatal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleostriatal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeostriatal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleostriatum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleostriatum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeostriatum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleostylic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleostylic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeostylic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleostyly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleostyly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeostyly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleotechnic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleotechnic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeotechnic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleothalamus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleothalamus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeothalamus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paleotropical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paleotropical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeotropical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paleotropical\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "Palaeotropical\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleovolcanic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleovolcanic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeovolcanic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleozoic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleozoic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleozoologic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleozoologic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoologic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleozoological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleozoological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleozoologist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleozoologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleozoologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleozoologist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoologist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paleozoology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paleozoology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleozoologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paleozoology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaeozoology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palestra (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palestra", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestra", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palestras", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestras", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palestra\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestra\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palestrae (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palestrae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestrae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palestral (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palestral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palestrian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palestrian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestrian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palestric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palestric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaestric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paletiology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paletiology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "palaetiology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palladiumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palladiumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palladiumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palladiumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palladiumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palletization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palletization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palletize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palletize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("palletizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "palletizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "palletizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "palletiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pamperize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pamperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pamperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pamperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pamperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pamphletize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pamphletize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pamphletise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pamphletizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pamphletises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panderize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panderizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panderises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pandora (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pandora", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pandoura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panegyrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panegyrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panegyrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panegyrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panegyrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panegyrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panegyrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panegyrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panegyrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paneling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panelist (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panelist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panellist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panelists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panellists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panelist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panellist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panelization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panellisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "panellization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panelized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "panelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panesthesia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "panaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "panaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panesthetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "panaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pangea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pangea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pangaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pannier (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pannier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "panier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "panniers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "paniers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pannier\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "panier\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("panomphean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "panomphean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "panomphaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pantheonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pantheonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pantheonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pantheonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pantheonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pantheonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pantheonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pantheonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pantheonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pantheonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pantheonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pantheonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pantie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pantie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "panty", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pantie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "panty\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("papalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "papalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("papalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "papalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("papalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "papalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "papalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "papalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("papilledema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "papilledema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "papilloedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("papule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "papule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "papulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parabolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parabolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parabolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parabolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parabolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parabolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parabolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parabolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parabolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paraffinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paraffinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paraffinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paraffinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paraffinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paragraphize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paragraphize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paragraphise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paragraphizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paragraphises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parakeet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parakeet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "parrakeet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parakeets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "parrakeets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parakeet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "parrakeet\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parallelization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parallelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parallelize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parallelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parallelizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parallelizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralleliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parallelizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parallelisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralogize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralyzation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralyzation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralyze (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paralyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [paralysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralyzedly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralyzedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzedlies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysedlies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralyzer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paralyzingly (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paralyzingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paralyzinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paralysinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paramecium (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paramecium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Paramoecium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paramecium\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Paramoecium\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parameterizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parameterizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parameterization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parameterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parameterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parameterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parameterize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parameterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parameterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parameterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parameterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parameterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parametrizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parametrizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parametrization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parametrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parametrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parametrization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parametrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parametrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parametrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parametrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parametrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parametrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paraselene (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paraselene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paraselenae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parasitemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parasitemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "parasitaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parasitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parasitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parasitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parasitize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parasitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parasitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parasitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parasitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parasitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parasitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parasitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parasitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parathyroidectomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parathyroidectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parathyroidectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parathyroidectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parathyroidectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parathyroidectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parathyroidectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parathyroidectomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parathyroidectomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paratragedia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paratragedia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paratragoedia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parcel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parceled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "parcelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parceling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "parcelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parceling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "parcelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parceler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parceler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "parceller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parchmentize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parchmentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parchmentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parchmentized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parchmentised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parchmentizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parchmentising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parchmentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parchmentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parecious (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paroecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pareciously (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pareciously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paroeciously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pareciousness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pareciousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paroeciousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parecism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parecism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paroecism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parecy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parecy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paroecy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parenesis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pareneses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraeneses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parenetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parenetical (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parenetical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraenetical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parenthesization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parenthesization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parenthesisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parenthesize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parenthesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parenthesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parenthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parenthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parenthesizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parenthesising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parenthesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parenthesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paresthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paresthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paresthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paresthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paresthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paresthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paraesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parfocalization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parfocalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parfocalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parfocalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parfocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parfocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Parisianization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Parisianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Parisianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Parisianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Parisianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Parisianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Parisianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Parisianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Parisianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parlor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parlor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "parlour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parlors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "parlours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parlor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "parlour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parlorish (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parlorish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "parlourish", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parlormaid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parlormaid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "parlourmaid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parmigiana (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parmigiana", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "parmigiano", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parochialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parochialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parochializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parochialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parochialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parochialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parochialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parochializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parochializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parochialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parrotize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parrotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parrotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parrotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parrotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("parsonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "parsonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parsonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "parsonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "parsonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("partialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "partialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("particolored (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "particolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "particoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "particolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "particoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("particularization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "particularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("particularize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "particularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("particularizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "particularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particulariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "particularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "particulariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("partisan (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "partisan", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizan", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisan\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizan\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisan", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizan", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisans", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizans", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisan\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "partizan\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("partisanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "partisanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partisanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "partisanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "partisanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pasiphae (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pasiphae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pasiphaae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pasiphae\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pasiphaae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("passades (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "passades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "passadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("passivization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "passivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "passivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("passivize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "passivize", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "passivise", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "passivized", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "passivised", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "passivizing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "passivising", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "passivizes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "passivises", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pasteurization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pasteurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pasteurize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pasteurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pasteurizers (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pasteurizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pasteurisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteuriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteurisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pasteurizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pasteuriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pastoralize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pastoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pastoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pastoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pastoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pastorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pastorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pastorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pastorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pastorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("paternalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "paternalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paternalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paternalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "paternalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patine (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "patinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patined", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "patinaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patrialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patrialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patrializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patrices (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patrices", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "patricoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patronizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patronizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patronization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patronize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patronizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patronizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patroniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patroniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patronizingly (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patronizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patronizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patronisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patte (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pattae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("patternize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "patternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "patternizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "patternises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paulinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paulinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paulinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paulinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paulinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paulinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paulinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pauperization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pauperization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pauperize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pauperize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pauperizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pauperizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pauperizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pauperiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pavior (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pavior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Paviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pavior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Paviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pavior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "paviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pavior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pawpaw (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pawpaw", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "papaw", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pawpaws", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "papaws", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pawpaw\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "papaw\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Paynize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Paynize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paynise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paynizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paynises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Paynize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Paynise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pe (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "poe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pearlization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pearlization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pearlisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pearlize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pearlize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pearlise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pearlized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pearlised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pearlizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pearlising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pearlizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pearlises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peasantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peasantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peasantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peasantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peasantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pectization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pectization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pectizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pectization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pectize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pectize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pectized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pectizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pectizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pectises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peculiarize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peculiarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peculiarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peculiarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peculiarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peculiarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peculiarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peculiarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peculiarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedagogism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedagogism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedagogism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedagogue (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedagogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedagog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedagogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedagogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedagogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedagog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedal (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pedalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pedaller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedalers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pedallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedaler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pedaller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pedalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedanticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedanticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedanticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedanticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedanticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedanticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedanticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedanticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedanticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedantize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedatrophia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedatrophia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedatrophia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedatrophy (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedatrophy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedatrophy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peddler (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peddler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedlar", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peddlers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedlars", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peddler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedlar\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pederast (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pederast", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "paederast", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pederast\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "paederast\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pederasts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "paederasts", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pederastic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pederastic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paederastic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pederastically (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pederastically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paederastically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedestal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedestaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedestrianization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedestrianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestrianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestrianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedestrianize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedestrianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestrianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestrianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedestrianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pedestrianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pediatric (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pediatric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paediatric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pediatrics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paediatrics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pediatrician (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pediatrician", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pediatrist", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "paediatrician", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pediatricians", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pediatrists", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "paediatricians", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pediatrician\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "pediatrist\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "paediatrician\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pediatry (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pediatry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paediatry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedobaptism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedobaptism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedobaptism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedobaptism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedobaptism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedobaptist (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedobaptist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedobaptist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedobaptist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedobaptist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedodontic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedodontic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedodontic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedodontics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedodontics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedogenesis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedogeneses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedogeneses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedogenetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedogenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedogenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedogenic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedogenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedogenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedological (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedologist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedologist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedologist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedologists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedologists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedology\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedology\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedometrical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedometrical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedometrical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedomorphic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedomorphic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedomorphic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedomorphism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedomorphism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedomorphism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedomorphisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedomorphisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedomorphosis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedomorphosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedomorphosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedomorphoses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedomorphoses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedophile (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedophile", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophile", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedophiles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophiles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedophilia (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedophilia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophilia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedophilias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophilias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedophiliac (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedophiliac", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophiliac", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pedophiliacs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophiliacs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedophilic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedophilic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "paedophilic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedotribe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedotribe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedotribe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedotrophic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedotrophic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedotrophic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedotrophist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedotrophist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedotrophist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pedotrophy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pedotrophy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "paedotrophy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pekingese (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pekingese", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Pekinese", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pekingese\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Pekinese\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pelletization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pelletization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pelletizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pelletization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pelletize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pelletize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pelletized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pelletizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pelletizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pelletizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pelletizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelletiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pelorized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pelorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pelorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pemmicanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pemmicanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pemmicanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pemmicanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pemmicanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pemmicanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pemmicanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pemmicanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pemmicanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pencil (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penciled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pencilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penciling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pencilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pencilings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pencillings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penciler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penciler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "penciller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pencilers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pencillers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penciler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "penciller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penelopize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penelopize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penelopise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penelopized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penelopised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penelopizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penelopising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penelopizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "penelopises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penlight (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penlight", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "penlite", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penlights", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "penlites", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "penlight\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "penlite\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("penne (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "penne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pennae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pense (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pensae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptonemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptonemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peptonizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peptonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peptonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peptoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peracid (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peracid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peracidity (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peracidity", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacidity", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peract (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peract", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preact", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peracute (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peracute", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacute", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perambulatory (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perambulatory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preambulatory", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perces (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perces", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preces", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perchlorethane (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perchlorethane", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perchloroethane", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perchlorethylene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perchlorethylene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perchloroethylene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perchloric (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perchloric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prechloric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perclose (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perclose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preclose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("percompound (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "percompound", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precompound", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("percurrent (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "percurrent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precurrent", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("percussionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "percussionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "percussionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "percussionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "percussionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perdicine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perdicine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perdicinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perdiligent (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perdiligent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prediligent", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perdy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perdy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "predy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perennialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perennialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "perennialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perennializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "perennialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pereon (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pereon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "peraeon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "peraea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pereopod (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pereopod", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "peraeopod", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pereopods", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "peraeopods", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perfectivize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perfectivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "perfectivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perfectivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "perfectivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perfervor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perfervor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perfervour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perfervors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perfervours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perfervor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perfervour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perfet (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perfet", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefet", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perfoliation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perfoliation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefoliation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perfoliations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefoliations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefoliation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praefoliation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("performant (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "performant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preformant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("performative (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "performative", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preformative", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perhazard (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perhazard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prehazard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pericecal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pericecal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pericaecal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pericecitis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pericecitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pericaecitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pericenter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pericenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pericentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perichete (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perichete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perichaete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pericope (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pericope", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pericopae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("periesophageal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "periesophageal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perioesophageal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peril (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "periled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "perilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("periodicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "periodicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("periodization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "periodization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("periodize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "periodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "periodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "periodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perjink (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perjink", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prejink", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perlection (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perlection", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelection", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelection", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelection", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelection\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelection\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perlingual (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perlingual", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelingual", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perlingually (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perlingually", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelingually", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("permissable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "permissable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "premissable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("permixture (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "permixture", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "premixture", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pernasal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pernasal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prenasal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peroral (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peroral", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preoral", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perorally (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perorally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preorally", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perotic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preotic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peroxidize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peroxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peroxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peroxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peroxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("peroxidizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "peroxidizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peroxidizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "peroxidizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "peroxidisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perpend (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perpend", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prepend", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perpended", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prepended", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perpending", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prepending", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perperfect (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perperfect", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preperfect", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Perse (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Perse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Persae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Perse\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Persae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prese", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Persianization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Persianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Persianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Persianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persianizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persianising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Persicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Persicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Persicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Persicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("persolve (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "persolve", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "presolve", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("personalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "personalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("personalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "personalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("personization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "personization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("personize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "personize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "personizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "personises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perst (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perst", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Peruvianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Peruvianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Peruvianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Peruvianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Peruvianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Peruvianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Peruvianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perv (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perv", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prev", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perve (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perve", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preve", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perved", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preved", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perving", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preving", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perves", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preves", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perviable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perviable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "previable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("perviousness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "perviousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "previousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "perviousnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "previousnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("petaled (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "petaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "petalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("petling (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "petling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "poetling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Petrarchize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Petrarchize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Petrarchizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Petrarchising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("petrolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "petrolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "petrolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "petrolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "petrolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "petrolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "petrolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("petrolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "petrolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "petrolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "petrolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "petrolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phacochere (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phacochere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phacochoere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phacocherine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phacocherine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phacochoerine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Phaenna (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Phaenna", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phaaenna", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Phaenna\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phaaenna\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phagedena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phagedena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phagedaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phagedenas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phagedaenas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phagedenic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phagedenic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phagedaenic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phagedenical (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phagedenical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phagedaenical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phagedenous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phagedenous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phagedaenous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phagocytize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phagocytize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phagocytise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phagocytizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phagocytises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phalanges (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phalanges", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("bone"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phalanxes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "phalanges", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("army"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phantomize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phantomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phantomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phantomizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phantomizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantomiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phantomizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phantomisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pharisean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pharisean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pharisaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pharisean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pharisaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pharmacopeian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pharmacopeian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pharmacopoeian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pharmacopoeia (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pharmacopoeia", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pharmacopeia", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pharmacopoeias", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pharmacopeias", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pharmacopoeia\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pharmacopeia\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pharmacopoeial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pharmacopoeial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pharmacopeial", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phelonion (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phelonion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaelonion", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phelonions", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaelonions", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenicia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenicia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phoenicia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenicopter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenicopter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phoenicopter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenogam (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenogam", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenogam", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenogams", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenogams", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenogenesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenogenesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenogenesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenogenetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenogenetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenogenetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenological (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenological", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenomenalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenomenalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenomenalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenomenalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenomenism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenomenism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenomenism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenomenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenomenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phenomenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phenomenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phenozygous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phenozygous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaenozygous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pheophyl (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pheophyl", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaeophyl", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pheophyll (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pheophyll", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaeophyll", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pheophytin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pheophytin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phaeophytin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phiale (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phiale", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phialae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philanthropize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philanthropize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philanthropise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philanthropized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philanthropised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philanthropizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philanthropising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philanthropizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philanthropises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Philippize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Philippize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philippizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philippising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Philistinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Philistinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Philistinizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Philistinising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philopena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philopena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "philopoena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philopenas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "philopoenas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philosophization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philosophization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philosophize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philosophize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philosophizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philosophizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philosophizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "philosophiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("philter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "philter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "philtre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "philtre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "philters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "philtres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phlebotomization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phlebotomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlebotomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlebotomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phlebotomize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phlebotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlebotomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlebotomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlebotomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phlebotomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phleum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phleum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phloeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phlyctena (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phlyctena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phlyctaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlyctenae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phlyctaenae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phlyctena\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phlyctaena\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phlyctenula (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phlyctenula", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phlyctaenula", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Phocean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Phocean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phocaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phonemicization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phonemicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonemicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phonemicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phonemicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonemicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonemicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonemicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonemicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phoneticization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phoneticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoneticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoneticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phoneticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phoneticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoneticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoneticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoneticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phonetization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phonetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phonetize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phonetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phonetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phony (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phony", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "phoney", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "phoneys", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phony\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "phoney\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phoniest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneyed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(""), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phonying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "phoneying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(""), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phosphatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phosphatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phosphatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phosphatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phosphorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phosphorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phosphorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phosphorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photesthesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photaesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photoesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photocatalyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photocatalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photocatalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photocatalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photocatalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photocatalyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photocatalyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photoesthetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photoesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photoaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photographize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photographize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photographise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photographizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photographises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photoionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photoionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photoionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photoionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photoisomerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photoisomerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoisomerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photoisomerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoisomerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photoisomerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photoisomerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photolabeled (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photolabeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photolabelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photolabeler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photolabeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photolabeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photolabeling (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photolabeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photolabelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photolyzable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photolyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "photolysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photolyze (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photopolymerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photopolymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photopolymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photopolymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photopolymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photopolymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photopolymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photosensitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photosensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photosensitize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photosensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photosensitizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photosensitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosensitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosensitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("photosynthesize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "photosynthesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosynthesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosynthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosynthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosynthesizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosynthesising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "photosynthesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "photosynthesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phrenologize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phrenologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phrenologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phrenologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phrenologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phrenologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phrenologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "phrenologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "phrenologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Phylactolema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Phylactolema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phylactolaema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Phylactolemata", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phylactolaemata", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Phylactolema\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phylactolaema\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Phylactolemata\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Phylactolaemata\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phytoecology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phytoecology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phytooecology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("phytohemagglutinin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "phytohemagglutinin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "phytohaemagglutinin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piarhemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piarhemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "piarhaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piaster (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piaster", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "piastre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piasters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "piastres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piaster\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "piastre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("picogram (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "picogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picogramme", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picograms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picogrammes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picogram\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picogramme\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("picometer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "picometer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "picometre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picometers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "picometres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picometer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "picometre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pictorialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pictorialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pictorializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pictorialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pictorialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pictorialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pictorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pictorializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pictorializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pictorialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("picturization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "picturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picturizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("picturize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "picturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "picturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "picturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pidginization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pidginization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pidginizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pidginization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pidginize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pidginize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pidginized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pidginizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pidginizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pidginises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piggyback (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piggyback", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pickaback", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piggybacking", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pickabacking", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piggybacks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pickabacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piggyback\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pickaback\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pigiedback", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pickabacked", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pigmean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pigmean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pigmentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pigmentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pigmentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pilaf (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pilaf", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pilaw", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "pilau", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "pilaff", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pilafs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pilaws", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "pilaus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "pilaffs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pilaf\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pilaw\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(1),}, + ], + }, + Variant { + word: "pilau\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(2),}, + ], + }, + Variant { + word: "pilaff\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: Some(3),}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pilgrimize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pilgrimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pilgrimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pilgrimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pilgrimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pilgrimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pilgrimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pilgrimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pilgrimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pillarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pillarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pillarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pillorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pillorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pillorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pillorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pillorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pillorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pillowbeer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pillowbeer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pillowbere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pindarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pindarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pindarizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pindarising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piney (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piney", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "piny", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pinkie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pinkie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pinkie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pinky", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pinkie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pinky\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pinnule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pinnule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pinnulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pinochle (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pinochle", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pinocle", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pinochle\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pinocle\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pinyon (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pinyon", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pi�on", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pinyons", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pi�ons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pinyon\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pi�on\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piratize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piratize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "piratise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piratizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "piratises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piroshki (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piroshki", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pirozhki", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "piroshki\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pirozhki\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("piscine (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "piscine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "piscinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pistol (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pistoled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pistolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pistoling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pistolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pixie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pixie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pixy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pixie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pixy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pixieish (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pixieish", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pixyish", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pizes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pizzazz (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pizzazz", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pizazz", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pizzazzes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "pizazzes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pizzazz\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pizazz\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Placean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Placean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Placaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Placean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Placaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("placebos (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "placebos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "placeboes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plage (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plagae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plagiarization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plagiarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plagiarize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plagiarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plagiarizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plagiarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plagiarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plagiariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Plante (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Plante", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Plantae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Plante\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Plantae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plantule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plantule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plantulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plasmapheresis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plasmapheresis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plasmaphaeresis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plasmolyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plasmolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plasmolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasmolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plasmolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasmolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plasmolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasmolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plasmolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plasticization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plasticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plasticize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plasticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plasticizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plasticizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plasticizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plasticiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plataea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platitudinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platitudinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platitudinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platitudinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platitudinizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platitudinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudiniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platitudinizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platitudiniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Platonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Platonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Platonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Platonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Platonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Platonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Platonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Platonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "platonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "platonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Platonizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Platonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Platonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Platoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platycelian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platycelian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "platycoelian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("platycelous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "platycelous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "platycoelous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plebeianization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plebeianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plebeianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plebeianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plebeianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plebeianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plebeianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plebeianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plebeianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pleuroperitoneal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pleuroperitoneal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pleuroperitonaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plow (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plow", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plough", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plow\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plough\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughing\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plows", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plowable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plowable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plowboy (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plowboy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughboy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowboys", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughboys", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowboy\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughboy\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plower (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plower", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plougher", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plower\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "plougher\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plowhead (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plowhead", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ploughhead", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plowman (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plowman", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughman", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowmen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughmen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowman\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughman\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plowshare (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plowshare", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughshare", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowshares", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughshares", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "plowshare\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ploughshare\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("plumule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "plumule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "plumulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pluralization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pluralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pluralize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pluralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pluralizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pluralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pluralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pluraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poeticization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poeticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poeticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poeticize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poeticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poeticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poeticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poeticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poeticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poeticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poeticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poeticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poetization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poetize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poetizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "poetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pogromize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pogromize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pogromise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pogromizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pogromises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pokey (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pokey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pokeys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pokey\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pokey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pokier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pokiest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polarizability (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polarizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polarizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polarizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polarization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polarize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polarizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polemicize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polemicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polemize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("policize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "policize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "policise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "policizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "policises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("policizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "policizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "policiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "policizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "policisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poliencephalitis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poliencephalitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polioencephalitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poliencephalitis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polioencephalitis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poliencephalomyelitis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poliencephalomyelitis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polioencephalomyelitis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("politicalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "politicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("politicization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "politicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("politicize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "politicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("politicizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "politicizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politiciser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politicizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politicisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("politize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "politize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "politizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "politises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pollack (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pollack", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pollock", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pollack\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pollock\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pollenizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pollenizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polleniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pollinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pollinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pollinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pollinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pollinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pollinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pollinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pollinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pollinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pollinizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pollinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polliniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polliwog (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polliwog", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pollywog", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polliwogs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pollywogs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polliwog\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pollywog\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pollock (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pollock", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("name"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Polonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Polonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Polonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Polonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Polonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polychetous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polychetous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polychaetous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polychromatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polychromatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polychromatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polychromatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polychromatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polychromize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polychromize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polychromise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polychromizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polychromises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polycythemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polycythemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "polycythaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polycythemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "polycythaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polycythemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polycythemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "polycythaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polydemonism (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polydemonism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polydaemonism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polydemonisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polydaemonisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polydemonist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polydemonist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polydaemonist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polydemonist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polydaemonist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polyemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polyemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polyaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polyemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polyemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polyaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polyestrous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polyestrous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polyoestrous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polygamize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polygamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polygamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polygamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polygamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polyhemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polyhemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polyhaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polyhemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polyhemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polyhaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polymerization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polymerize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polymerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polymerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polymerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polymerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polymerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polypnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polypnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polypnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polypneic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polypneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polypnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polysulphurization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polysulphurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polysulphurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polysulphurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polysulphurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polysulphurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "polysulphurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("polytetrafluorethylene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "polytetrafluorethylene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polytetrafluoroethylene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "polytetrafluorethylenes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "polytetrafluoroethylenes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pomerium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pomerium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pomoerium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pomme (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pomme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pommae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pommel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pommeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pommelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pommeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pommelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("popliteal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "popliteal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "poplitaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("popularization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "popularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("popularize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "popularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("popularizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "popularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "populariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "popularisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "popularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "populariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porcelainization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porcelainization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcelainizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcelainization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porcelainize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porcelainize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcelainized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcelainizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcelainizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcelainises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porcellanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porcellanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcellanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcellanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcellanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcellanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcellanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porcellanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porcellanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poringly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poringly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pouringly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porphyrization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porphyrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porphyrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "porphyrization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "porphyrisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("porte (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "porte", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "portae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("portionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "portionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "portionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "portionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "portionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("positivize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "positivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "positivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "positivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "positivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postcecal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postcecal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "postcaecal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postcenal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postcenal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "postcoenal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("posterize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "posterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "posterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postfetal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postfetal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "postfoetal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postilion (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postilion", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "postillion", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "postilions", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "postillions", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "postilion\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "postillion\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postmedieval (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postmedieval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "postmediaeval", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("postsynchronization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "postsynchronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "postsynchronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("posturize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "posturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "posturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "posturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "posturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "posturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("potentialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "potentialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("potentialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "potentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("potentize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "potentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "potentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "potentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pouder (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pouder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "poudre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pouders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "poudres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pouf (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pouffe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pouf", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pouffe\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "pouf\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pouf", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pouf\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("poulder (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "poulder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pouldre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "poulders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pouldres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("powderization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "powderization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powderizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powderization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("powderize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "powderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powderizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("powderizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "powderizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powderizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powderisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("powellize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "powellize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powellise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powellized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powellised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powellizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powellising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "powellizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "powellises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("practice (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "practice", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "practise", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practices", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "practises", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practice\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "practise\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practice", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "practise", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practiced", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "practised", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practicing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "practising", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practices", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "practises", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("practicer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "practicer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "practiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practicers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "practisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "practicer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "practiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pragmatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pragmatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pragmatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pragmatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pragmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pragmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pragmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pragmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pragmatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pragmatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pragmatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pragmatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preabdomen (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preabdomen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeabdomen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preacetabular (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preacetabular", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeacetabular", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preacherize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preacherize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preacherise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preacherizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preacherises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preacknowledgment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preacknowledgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacknowledgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preacknowledgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacknowledgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preacknowledgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preacknowledgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preanal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preanal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeanal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preanesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preanesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preanaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preanesthetics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preanaesthetics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preanesthetic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preanaesthetic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preapprize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preapprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preapprise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preapprized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preapprized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preapprised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preapprizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preapprizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preapprising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preauthorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preauthorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preauthorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prebaptize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prebaptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prebaptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prebaptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prebaptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precancelation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precancelation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precancellation", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precava (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precava", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecava", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precavae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecavae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precipe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precipe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecipe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precipes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecipes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precisionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precisionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precisionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precisionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precisionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precivilization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precocial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precocial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecocial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precolorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precolorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "precolourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precolorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precolourations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "precolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preconization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preconization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preconize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preconizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preconizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preconizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preconiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precoracoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precoracoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecoracoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precordial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precordial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecordial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precordium (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precordium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecordium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precordia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecordia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precornu (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precornu", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecornu", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precox (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precox", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecox", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precriticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precriticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precriticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "precriticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "precriticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("precuneus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "precuneus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praecuneus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("predial (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "predial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praedial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "predials", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praedials", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("predialist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "predialist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praedialist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prediality (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prediality", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praediality", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preemptor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preemptor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preaemptor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preemptor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preaemptor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preesophageal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preesophageal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeesophageal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preesophageal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preoesophageal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preestival (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preestival", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preaestival", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preexistent (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preexistent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preaexistent", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefavor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefavorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefavorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefavorably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefavorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefavorite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefavorite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavorites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefavorite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prefavourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefectorial (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefectorial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praefectorial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefertilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefertilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prefertilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefertilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prefertilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefertilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prefertilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefertilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefertilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prefertilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prefertilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prefertilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preflavor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preflavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preflavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preflavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preflavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preflavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preflavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preflavoring (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preflavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preflavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preflavorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preflavourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prefloration (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prefloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praefloration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pregalvanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pregalvanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pregalvanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pregalvanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pregalvanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prehallux (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prehallux", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praehallux", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prehumor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prehumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prehumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prehumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prehumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prehumor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prehumour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preinitialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preinitialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preinitialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preinitialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preinitialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preinitializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preinitialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preinitializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preinitialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prejudgment (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prejudgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "prejudgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prejudgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "prejudgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prejudgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "prejudgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelabor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelabor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelabour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelabors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelabours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelabor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prelabour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelabrum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelabrum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelabrum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelect (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelect", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelect", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelected", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelected", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelecting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelecting", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelects", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelects", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelector (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelector", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelector", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelectorship (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelectorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelectorship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelectress (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelectress", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praelectress", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prelocalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prelocalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelocalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelocalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelocalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prelocalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prelocalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preludium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preludium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "praeludium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preludize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preludize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preludise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preludizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preludises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premaxilla (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premaxilla", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praemaxilla", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premial (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proemial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premillennialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premillennialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "premillennialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premillennialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premillennialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "premillennialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premillennializing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premillennializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "premillennialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premise (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "premiss", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "premises", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "premisses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "premise\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "premiss\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "premise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premonopolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premonopolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "premonopolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "premonopolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "premonopolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("premunire (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "premunire", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praemunire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prenarial (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prenarial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praenarial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preneural (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preneural", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeneural", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prenomen (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "praenomen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prenomen", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "praenomens", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prenomens", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "praenomen\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prenomen\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prenomina (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prenomina", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praenomina", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prenominal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prenominal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praenominal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preoffense (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preoffense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preoffence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preoffenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preoffences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preoffense\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "preoffence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preoperculum (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preoperculum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeoperculum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preorganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preorganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preorganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preoxidize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preoxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preoxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preoxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preoxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preoxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preoxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preoxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preoxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prepaleolithic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prepaleolithic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prepalaeolithic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prepositor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prepositor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepositor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prepositure (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prepositure", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepositure", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preposter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preposter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praeposter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prepostor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prepostor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepostor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prepostors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepostors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prepostor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepostor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preppy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preppy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "preppie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preppy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "preppie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preprogram (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preprogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preprogramme", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prepubis (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prepubis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praepubis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prerealization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prerealization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerealisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prerealizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerealisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prerealization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerealisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prerealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prerealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prerealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prerecognize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prerecognize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerecognise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prerecognizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prerecognises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Presbyterianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Presbyterianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Presbyterianizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Presbyterianising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prescutum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prescutum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praescutum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presidium (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presidium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "praesidium", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "presidiums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "presidia", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "praesidiums", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: Some("M-w has presidiums as a variant, but Ox doesn\'t say anything about the variant form"), + }, + Entry { + variants: &[ + Variant { + word: "presidium\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "praesidium\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prespecialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prespecialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prespecialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prespecializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prespecialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presphenoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presphenoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praesphenoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presplendor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presplendor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "presplendour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "presplendors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "presplendours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "presplendor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "presplendour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pressurization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pressurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pressurize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pressurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pressurizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pressurizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressuriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pressurizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pressurisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prestandardization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prestandardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prestandardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prestandardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prestandardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prestandardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prestandardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prestandardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prestandardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prestandardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prestandardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prestandardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presternal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presternal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praesternal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presternum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presternum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praesternum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prestomium (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prestomium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praestomium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presympathize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presympathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "presympathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "presympathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "presympathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("presystolic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "presystolic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praesystolic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretaxation (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretaxation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetaxation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretense (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pretence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pretenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pretences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pretense\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pretence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretensive (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretensive", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pretencive", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preterit (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preterit", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "preterite", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preterits", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "preterites", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preterit\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "preterite\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretexta (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretexta", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetexta", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pretextae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetextae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pretexta\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetexta\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretorial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretorial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetorial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pretorians (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pretorians", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Praetorians", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretorium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretorium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetorium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pretorius (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pretorius", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Praetorius", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pretorius\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Praetorius\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pretorship (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pretorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praetorship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preutilizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preutilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preutilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preutilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preutilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preutilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preutilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preutilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preutilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preutilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preutilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "preutilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preventable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preventable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "preventible", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("preview (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "preview", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prevue", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("movie preview"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "previews", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prevues", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("movie preview"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preview\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prevue\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("movie preview"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "preview", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("previze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "previze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "previse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prezygapophysis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prezygapophysis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "praezygapophysis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pricey (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pricey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pricy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prier (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pryer", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "priers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pryers", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prier\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pryer\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("primeval (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "primeval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "primaeval", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("primevally (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "primevally", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "primaevally", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prioritization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prioritization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prioritize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prioritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prioritizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prioritizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prioritizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prioritisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("priorization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "priorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "priorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("priorize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "priorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "priorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "priorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "priorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("privatization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "privatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("privatize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "privatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("privatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "privatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "privatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "privatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("reward"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "priser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("otherwise"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("otherwise"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proadvertizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proadvertizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proadvertising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("problemize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "problemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "problemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "problemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "problemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("processionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "processionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "processionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "processionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "processionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Procrusteanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Procrusteanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Procrusteanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Procrusteanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Procrusteanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Procrusteanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Procrusteanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proctodeal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proctodeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proctodaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proctodeum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proctodeum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proctodaeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctodea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proctodaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctodeums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proctodaeums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctodeum\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proctodaeum\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proctorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proctorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proctorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proctorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proctorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proctorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prodigalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prodigalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prodigalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prodigalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prodigalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prodigalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prodigalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prodigalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prodigalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("productize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "productize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "productized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "productizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "productizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("productizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "productizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "productizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "productisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proemium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proemium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prooemium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("profanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "profanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "profanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "profanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "profanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("profer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "profer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "profre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("professionalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "professionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("professionalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "professionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("professionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "professionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "professionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "professionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("program (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "program", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programme", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programmes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "program\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programme\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "program", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programme", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programmed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programming", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programmes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "program", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("computer program"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programmed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("computer program"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programming", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("computer program"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("computer program"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "program\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("computer program"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("programmer (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "programmer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programmers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "programmer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "programer\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proindustrialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proindustrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proindustrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("projectization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "projectization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "projectisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "projectizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "projectisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proletarianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proletarianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proletarianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proletarianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proletarianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proletarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proletarianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proletarianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proletarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proletarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proletarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proletarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proletarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proletarizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proletarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proletarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prologue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prologue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prolog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prolog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prologuize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prologuize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologuized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologuizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologuizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prologuizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prologuizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologuizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prologuizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prologuiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prolusionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prolusionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prolusionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prolusionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prolusionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pronominalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pronominalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pronominalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pronominalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pronominalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pronominalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propagandize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propagandize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propagandise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propagandized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propagandised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propagandizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propagandising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propagandizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propagandises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propellant (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propellant", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "propellent", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propellants", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "propellents", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propellant\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "propellent\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prophetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prophetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prophetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prophetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prophetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propositionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propositionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propositionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propositionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propositionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propretor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propretor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "propraetor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propretors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "propraetors", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propretor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "propraetor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propretorial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propretorial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "propraetorial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propretorian (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propretorian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "propraetorian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propylitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propylitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propylitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("propylitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "propylitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propylitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propylitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "propylitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "propylitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proselytization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proselytization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proselytize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proselytize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proselytizer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proselytizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proselytizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proselytiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proseuche (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proseuche", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proseuchae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prosocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prosocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prosocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prosopopeia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prosopopoeia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prosopopeia", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prosopopoeias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "prosopopeias", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prosopopeial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prosopopeial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prosopopoeial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prostatorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prostatorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "prostatorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protectionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proteide (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proteide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "proteidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Protestantize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Protestantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Protestantizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Protestantising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protester (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protester", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "protestor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protesters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "protestors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protester\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "protestor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Prothoenor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Prothoenor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Prothoaenor", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prothoenor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Prothoaenor\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protoarcheology (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protoarcheology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "protoarchaeology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protocol (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protocoled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocoling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protocolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protocolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("protocolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "protocolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "protocolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "protocolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proverbialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proverbialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proverbialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proverbializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proverbializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("proverbize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "proverbize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "proverbizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "proverbises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("provincialization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "provincialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "provincializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "provincialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("provincialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "provincialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "provincialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "provincializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "provincializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "provincialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Prussianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Prussianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Prussianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Prussianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Prussianizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Prussianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Prussianizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Prussianiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prussianizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "prussianiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("psalmodize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "psalmodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psalmodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psalmodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psalmodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psalmodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psalmodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psalmodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psalmodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudelephant (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudelephant", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoelephant", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudembryo (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudembryo", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoembryo", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudembryonic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudembryonic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoembryonic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudesthesia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudhemal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudhemal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudhaemal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudoanemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudoanemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoanaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudoanemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoanaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudoanemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoanaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudoanemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudoanemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoanaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudoanemics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudoanaemics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudocelom (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudocelom", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudocoelom", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudoedema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudoedema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudooedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudoedemas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudooedemas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudoedema\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudooedema\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudographize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudographize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudographise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pseudographizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudographises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pseudolunule (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pseudolunule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pseudolunulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("psychoanalyze (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "psychoanalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [psychoanalysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("psychoanalyzer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "psychoanalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychoanalyzer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychoanalyser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("psychologization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "psychologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("psychologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "psychologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "psychologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "psychologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ptolemean (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ptolemean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ptolemaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ptolemean\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ptolemaean\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ptyalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ptyalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ptyalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ptyalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ptyalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ptyalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ptyalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ptyalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ptyalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("publice (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "publice", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "publicae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("publicize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "publicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "publicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "publicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "publicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "publicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "publicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "publicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "publicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("puebloization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "puebloization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puebloisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puebloizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puebloisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puebloization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puebloisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("puebloize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "puebloize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puebloise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puebloizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puebloises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("puers (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "puers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pures", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulicide (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulicide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pulicidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pullmanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pullmanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pullmanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pullmanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pullmanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pullmanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pullmanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulpitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulpitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulpitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulpitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulpitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulverizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulverizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulverization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulverization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulverize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulverizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulverizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulveriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulverisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pulverizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulveriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pulvilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pulvilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pulvilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pummel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pummeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pummelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pummeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pummelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pummeler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pummeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pummeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pumpkin (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pumpkin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "punkin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pumpkins", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "punkins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pumpkin\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "punkin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pupilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pupilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pupilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pupilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pupilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("puppetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "puppetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puppetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puppetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puppetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Puritanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Puritanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Puritanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Puritanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puritanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puritanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puritanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puritanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puritanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puritanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "puritanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "puritanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Puritanizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Puritanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Puritanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Puritanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Puritaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyemia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pygmean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pygmean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pygmaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pygmy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pygmy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pygmies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pygmy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "pigmy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyorrhea (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyorrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyorrheal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyorrhealer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoealer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyorrhealest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoealest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyorrheic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyorrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyorrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyramidize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyramidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyramidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyramidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyramidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pyrenean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pyrenean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pyrenaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pyreneus (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pyreneus", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pyrenaeus", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pyreneus\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Pyrenaeus\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyridinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyridinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyridinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyridinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyridinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyritization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyritization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyritizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyritization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyritize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyritized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyritizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyritizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyritises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyrolyzable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyrolyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyrolyzate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyrolyzate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyzates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyzate\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysate\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyrolyze (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyrolyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pyrolyze\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolyse\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pyrolyzer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pyrolyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pyrolyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Pythagoreanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Pythagoreanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pythagoreanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pythagoreanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pythagoreanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Pythagoreanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Pythagoreanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pythonine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pythonine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "pythoninae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("pythonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "pythonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pythonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "pythonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "pythonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quadraphonic (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quadraphonic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quadriphonic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "quadrophonic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quadraphonics", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quadriphonics", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "quadrophonics", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: true, + description: Some("noun plural but singular in construction"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quahog (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quahog", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quahaug", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quahogs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quahaugs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quahog\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quahaug\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Quakerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Quakerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Quakerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Quakerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Quakerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Quakerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Quakerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Quakerize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Quakerise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quantization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quantization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quantize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quantizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quantizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quantizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quantiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quarrel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quarreled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarrelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quarreling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarrelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quarreler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quarreler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarreller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quarrelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarrellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quarreler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarreller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quarrelous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quarrelous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quarrellous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quarterization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quarterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quarterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quarterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quarterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quarterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quarterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quartet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quartet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quartette", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quartets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quartettes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quartet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quartette\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quaters (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quaters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quatres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("que (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "que", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("querele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "querele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "querelae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("questionary (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "questionary", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quaestionary", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "questionaries", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quaestionaries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("questor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quaestor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "questor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quaestors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "questors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quaestor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "questor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("questorial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "questorial", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quaestorial", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("questorship (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "questorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quaestorship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "questorship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "quaestorship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("queuing (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "queuing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "queueing", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quininize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quininize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quininise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quininizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quininises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quintessentialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quintessentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quintessentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quintessentialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quintessentialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quintessentializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quintessentialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quintessentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "quintessentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("quintet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "quintet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quintette", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quintets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quintettes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "quintet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "quintette\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("raccoon (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "raccoon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "racoon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raccoon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "racoon\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raccoon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "raccoons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "racoons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "racoon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + ], + notes: &[ + "Ox does not say anything about the proper plural forum. I am going", + "to assume it the same as the singular", + ], + }, +Cluster { + header: Some("racemization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "racemization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racemizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racemization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("racemize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "racemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("racialization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "racialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("racialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "racialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "racialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("racket (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "racket", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "racquet", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rackets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "racquets", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racket\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "racquet\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racket", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rackets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "racket\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Radborne (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Radborne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Radbourne", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Radborne\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Radbourne\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radicalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radicalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radicalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radicalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiopasteurization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiopasteurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiopasteurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiosensitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiosensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiosterilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiosterilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosterilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiosterilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiosterilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosterilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosterilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosterilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosterilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosterilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiosterilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiosterilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiumization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiumization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiumisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiumizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiumisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiumization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiumisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("radiumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "radiumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "radiumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "radiumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rajah (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rajah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "raja", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rajah\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "raja\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rajahes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rajas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Rame (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Rame", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ramae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Rame\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Ramae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ramekin (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ramekin", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ramequin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ramekins", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ramequins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ramekin\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ramequin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rampier (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rampier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rampire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rancor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rancor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rancour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rancors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rancours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rancor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rancour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("randomization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "randomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("randomize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "randomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("randomizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "randomizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "randomizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "randomiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ranee (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ranee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rani", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ranees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ranis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ranee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rani\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("raphe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "raphe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "raphae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("raphide (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "raphide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "raphidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rapturize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rapturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rapturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rapturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rapturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rapturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rapturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rapturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rapturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rascalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rascalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rascalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rascalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rascalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rationalizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rationalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rationalization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rationalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rationalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rationalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rationalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rationaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ratite (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ratite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ratitae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ratlines (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ratlines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ratlins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ratline\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ratlin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ratline", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ratlin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("o: usually plural"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ravel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "raveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ravelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ravelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ravelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ravelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ravellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raveling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "ravelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("raveler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "raveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "raveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ravelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ravellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "raveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "raveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reacclimatization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reacclimatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reacclimatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reacclimatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reacclimatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reacclimatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reacclimatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reacclimatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reacclimatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reacclimatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reactualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reactualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reactualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reactualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reactualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("readvertize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "readvertize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "readvertise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "readvertized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "readvertised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "readvertizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "readvertising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realisticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realisticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realisticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizableness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realization (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realize (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "realizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("realizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "realizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "realisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reanalyze (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reanalyze", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalyse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanalyzing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalysing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanalyzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalyses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanalyses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [reanalysis]"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reanalyzer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reanalyzer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalyser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanalyzers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanalysers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reanimalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reanimalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanimalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reanimalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reanimalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reapologize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reapologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reapologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reapologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reapologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reauthorization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reauthorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reauthorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reauthorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reauthorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reauthorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reauthorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reauthorize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reauthorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reauthorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reauthorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reauthorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rebaptization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rebaptization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebaptizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebaptization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rebaptize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rebaptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebaptized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebaptizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebaptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebaptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rebourbonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rebourbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebourbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebourbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebourbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rebrutalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rebrutalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebrutalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rebrutalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rebrutalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recanalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recanalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recanalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recapitalization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recapitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recapitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recapitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recapitalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recapitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recapitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recapitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recapitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recapitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recarbonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recarbonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recarbonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recarbonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recarbonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recarbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recarbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recarbonizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recarbonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarboniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recarbonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recarbonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recategorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recategorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recategorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recausticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recausticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recausticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recausticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recausticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recentralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recentralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recentralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recentralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recentralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recentralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recentralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recentralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recentralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recentralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recentralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recentralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recercele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recercele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "recercelae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reciprocalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reciprocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reciprocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reciprocalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reciprocalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recivilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recivilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recivilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recivilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recivilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recivilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizable (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizably (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizance (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizance", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisance", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizances", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisances", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizance\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisance\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognize (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizedly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizedlies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisedlies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recogniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recogniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recognizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recognizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recognizinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recognisinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recolonization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recolonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recolonize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recolonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recolonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recolor (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "recolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "recoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "recolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "recolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "recolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "recolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recolorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "recolourations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "recolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reconceptualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reconceptualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reconceptualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reconceptualizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reconceptualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reconceptualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reconnoiter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reconnoiter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "reconnoitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoitered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "reconnoitred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoitering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "reconnoitring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoiters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "reconnoitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoiter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "reconnoitre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reconnoiterer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reconnoiterer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reconnoitrer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoiterers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reconnoitrers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reconnoiterer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reconnoitrer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recriticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recriticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recriticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recriticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recriticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recrystallization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recrystallization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recrystallizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recrystallization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("recrystallize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "recrystallize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recrystallized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recrystallizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "recrystallizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "recrystallises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("redial (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "redialed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "redialled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "redialing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "redialling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("redialer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "redialer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "redialler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("redisseize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "redisseize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "redisseise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("redisseizin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "redisseizin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "redisseisin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reedify (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reedify", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaedify", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reedified", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaedified", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reedifying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaedifying", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reedifies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaedifies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reemphasize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reemphasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reemphasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reemphasizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reemphasizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reemphasizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reemphasisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reentrance (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reentrance", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaentrance", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reentrance\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaentrance\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reexportation (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reexportation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaexportation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reexportation\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaexportation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reexporter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reexporter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaexporter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reexporter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reaexporter\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("refavor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "refavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "refavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "refavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "refavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("refertilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "refertilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "refertilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refertilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "refertilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refertilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "refertilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("refertilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "refertilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "refertilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refertilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "refertilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reflectorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reflectorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reflectorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reflectorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reflectorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reflectorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reflectorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reflectorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reflectorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reflectorize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reflectorise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reforestization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reforestization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reforestisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reforestization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reforestisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reforestize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reforestize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reforestise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reforestizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reforestises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reformades (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reformades", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reformadoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("refuel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "refueled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "refuelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "refueling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "refuelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regalvanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regalvanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalvanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regalvanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalvanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regalvanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalvanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regalvanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regalvanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalvanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regalvanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regalvanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reges (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reges", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "regoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regionalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regularization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regularize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regularizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regularisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("regulize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "regulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regulized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regulizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "regulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "regulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reharmonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reharmonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reharmonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reharmonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reharmonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reharmonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reharmonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reharmonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Rehm (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Rehm", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Roehm", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Rehm\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Roehm\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rehonor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rehonor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rehonour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rehonors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rehonours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rehonor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rehonour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rehumanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rehumanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehumanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rehumanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehumanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rehumanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rehumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rehumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rehybridize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rehybridize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehybridise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rehybridizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rehybridises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reindustrialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reindustrialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reindustrializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reindustrialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reindustrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reindustrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reindustrializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reindustrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reindustrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reinforce (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reinforce", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reenforce", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinforced", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reenforced", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinforcing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reenforcing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinforces", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reenforces", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reinforceable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reinforceable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "reenforceable", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reinitialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reinitialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reinitialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reinitialize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reinitialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reinitialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinitialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reinitialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinitializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reinitialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reinitializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reinitialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reitemize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reitemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reitemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reitemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reitemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rejuvenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rejuvenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rejuvenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rejuvenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rejuvenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rejuvenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rejuvenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rejuvenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rejuvenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("relabel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "relabeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "relabelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relabeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "relabelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("relabeler (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "relabeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "relabeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relabelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "relabellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("relativization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "relativization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relativizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relativization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("relativize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "relativize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relativized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relativizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "relativizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "relativises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("religionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "religionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "religionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "religionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "religionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "religionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "religionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "religionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "religionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remagnetization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remagnetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remagnetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remagnetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remagnetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remagnetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remagnetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remagnetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remagnetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remagnetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remagnetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remagnetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rematerialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rematerialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rematerialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rematerialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rematerialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rematerializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rematerialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rememorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rememorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rememorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rememorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rememorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remilitarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remilitarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remilitarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remilitarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remilitarize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remilitarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remilitarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remilitarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remilitarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remilitarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remineralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remineralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remineralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remineralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remineralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remineralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remineralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remineralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remineralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remineralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remobilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remobilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remobilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remobilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remobilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remobilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remodel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remodeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "remodelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remodeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "remodelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remold (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remold", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "remould", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remolded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "remoulded", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remolding", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "remoulding", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remolds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "remoulds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remonetization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remonetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remonetizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remonetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remonetize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remonetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remonetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remonetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remonetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remonetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remoralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remoralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remoralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("remoralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "remoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remoralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remoralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "remoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "remoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("renationalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "renationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rencounter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rencounter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rencontre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Renferd (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Renferd", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Renfred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Renferd\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Renfred\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("renormalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "renormalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renormalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renormalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("renormalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "renormalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renormalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renormalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "renormalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "renormalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reobjectivization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reobjectivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reobjectivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reobjectivizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reobjectivisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reobjectivization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reobjectivisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reobjectivize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reobjectivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reobjectivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reobjectivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reobjectivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reorganization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reorganizational (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reorganizational", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisational", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reorganizationist (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reorganizationist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisationist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizationists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisationists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizationist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisationist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reorganize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reorganizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reorganizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reorganizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reorganiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reoxidize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reoxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reoxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reoxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reoxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reoxygenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reoxygenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxygenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reoxygenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reoxygenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repaganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repaganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repaganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repaganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repaganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repaganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repaganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repaganizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repaganizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repaganizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repaganisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repatronize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repatronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repatronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repatronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repatronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repellent (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repellent", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "repellant", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repellents", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "repellants", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repellent\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "repellant\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repersonalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repersonalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repersonalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rephosphorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rephosphorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rephosphorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rephosphorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rephosphorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rephosphorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rephosphorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rephosphorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rephosphorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rephosphorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rephosphorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rephosphorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repolymerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repolymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repolymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repolymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repolymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repolymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repolymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repolymerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repolymerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repolymerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repolymerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repolymerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repopularize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repopularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repopularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reprivatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reprivatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprivatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprivatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reprivatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reprivatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprivatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprivatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprivatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprivatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reprized (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reprized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reprogram (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reprogram", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprogramme", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reprograms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "reprogrammes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("republicanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "republicanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("republicanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "republicanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("republicanizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "republicanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "republicanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "republicaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("repulverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "repulverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repulverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "repulverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "repulverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reroyalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reroyalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reroyalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reroyalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reroyalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reseize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reseize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reseise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reseizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reseizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reseiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resensitization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resensitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resepulcher (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resepulcher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "resepulchre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resepulchers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "resepulchres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resolemnize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resolemnize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resolemnise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resolemnizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resolemnises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("respectabilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "respectabilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "respectabilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "respectabilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "respectabilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "respectabilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "respectabilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "respectabilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "respectabilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("restandardization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "restandardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restandardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restandardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restandardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restandardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restandardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("restandardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "restandardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restandardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restandardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restandardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("restaurateur (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "restaurateur", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "restauranteur", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restaurateurs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "restauranteurs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restaurateur\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "restauranteur\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resterilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resterilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resterilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resterilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resterilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("restigmatize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "restigmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restigmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "restigmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "restigmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resurrectionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resurrectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resurrectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resurrectionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resurrectionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resurrectionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resurrectionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resurrectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resurrectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resymbolization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resymbolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resymbolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resymbolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resymbolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resymbolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resymbolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resymbolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resymbolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resymbolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resymbolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resymbolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resynchronization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resynchronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynchronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynchronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resynchronize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resynchronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynchronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynchronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynchronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynchronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("resynthesize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "resynthesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynthesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "resynthesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "resynthesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("retinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "retinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "retinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "retinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "retinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("retinule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "retinule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "retinulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("retranquilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "retranquilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "retranquilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "retranquilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "retranquilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("retrocecal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "retrocecal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "retrocaecal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reutilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reutilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reutilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reutilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reutilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reutilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reutilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reutilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "reutilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revalorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revalorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revalorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revalorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revalorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revalorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revalorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revalorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revalorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revalorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revaporization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revaporization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revapourisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revaporizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revapourisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revaporization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revapourisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note for \"vaporize\"", + ], + }, +Cluster { + header: Some("revaporize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revaporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revaporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revaporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revaporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note for \"vaporize\"", + ], + }, +Cluster { + header: Some("revel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revelationize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revelationize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revelationise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revelationizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revelationises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reveler (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "reveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("reverie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "reverie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "revery", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "reverie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "revery\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revigor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revigor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "revigour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revisualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revisualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revisualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revisualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revisualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revisualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revisualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revisualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revisualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revisualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revisualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revisualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revitalization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revitalize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revitalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revitalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revitalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revitalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revivalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revivalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revivalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revivalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revivalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revocable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revocable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "revokable", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revolatilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revolatilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolatilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolatilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolatilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revolutionize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revolutionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revolutionizement (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revolutionizement", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionisement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizements", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionisements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizement\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionisement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("revolutionizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "revolutionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutioniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutionisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "revolutionizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "revolutioniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Rexford (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Rexford", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Rexfourd", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Rexford\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Rexfourd\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhaphe (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhaphe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhaphae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhapsodize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhapsodize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhapsodise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhapsodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhapsodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhapsodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhapsodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhapsodizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhapsodises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rheadine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rheadine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhoeadine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhebosis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhebosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhaebosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Rhetian (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Rhetian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Rhaetian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Rhetian\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Rhaetian\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Rhetic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Rhetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Rhaetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhetorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhetorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhetorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhetorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhetorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhetorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhetorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhetorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhetorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rheumatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rheumatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rheumatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rheumatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rheumatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rheumatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rheumatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rheumatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rheumatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhinocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhinocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhinocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhinocelian (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhinocelian", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhinocoelian", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhinorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhinorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhinorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhinorrheal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhinorrheal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rhinorrhoeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhodanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhodanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhodanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhodanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhodanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhodanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhodanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhodanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhodanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhotacize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhotacize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhotacise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhotacized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhotacised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhotacizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhotacising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhotacizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhotacises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhythmicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhythmicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhythmizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhythmizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhythmization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhythmization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rhythmize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rhythmize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rhythmizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rhythmises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rickshaw (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rickshaw", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ricksha", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rickshaws", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rickshas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rickshaw\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ricksha\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ridiculize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ridiculize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ridiculise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ridiculizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ridiculises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigidize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rigidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rigidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rigidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rigidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigmarole (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigmarole", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rigamarole", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigmaroles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rigamaroles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigmarole\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "rigamarole\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rigour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rigours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rigour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigorism (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigorism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rigourism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigorism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rigourism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigorist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rigourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rigorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rigourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rigoristic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rigoristic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rigouristic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("riotize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "riotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "riotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "riotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "riotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("riposte (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "riposte", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ripost", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ripostes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "riposts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "riposte\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ripost\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ritornelle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ritornelle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ritournelle", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritornelles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ritournelles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ritualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ritualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ritualize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ritualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ritualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ritualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rival (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rivaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rivaless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rivaless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivalesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rivallesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivaless\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalless\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rivalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rivalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rivalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rivalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("robotization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "robotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "robotizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "robotization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("robotize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "robotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "robotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "robotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "robotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "robotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("roed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "roed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rooed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Roentgen (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Roentgen", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "R�ntgen", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("roentgenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "roentgenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "roentgenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("roer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "roer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rore", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Romania (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Romania", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Roumania", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Roumanias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romania\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Roumania\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Romanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Romanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Romanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Romanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Romanizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Romanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Romanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Romaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("romanticization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "romanticization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanticizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanticization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("romanticize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "romanticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "romanticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "romanticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ropy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ropy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ropey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ropier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ropiest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("routinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "routinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "routinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "routinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("routinize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "routinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "routinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "routinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "routinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "routinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rowel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "roweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "rowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "roweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "rowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("royalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "royalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "royalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "royalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("royalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "royalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "royalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "royalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "royalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "royalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rubberization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rubberization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubberisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rubberize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rubberize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubberise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rubberized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubberised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rubberizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubberising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rubberizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubberises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruble (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruble", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rouble", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rubles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "roubles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruble\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rouble\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rubricize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rubricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rubricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rubricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruffianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruffianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruffianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruffianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruffianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruggedization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruggedization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruggedizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruggedization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruggedize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruggedize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruggedized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruggedizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruggedizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruggedises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rumor (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rumorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rumorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rumourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rumourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "rumourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rumormonger (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rumormonger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumourmonger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumormongers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumourmongers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rumormonger\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "rumourmonger\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ruralize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ruralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ruralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ruralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Russianization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Russianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Russianizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Russianization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "russianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "russianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Russianize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Russianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Russianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Russianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Russianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Russianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "russianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "russianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("rusticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "rusticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rusticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rusticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rusticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rusticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rusticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "rusticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "rusticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sabbathize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sabbathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sabbathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sabbathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sabbathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sabbathize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sabbathise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sabbatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sabbatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sabbatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabbatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sabbatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabbatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sabbatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabbatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sabbatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sabean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sabean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sabaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sabeans", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sabaeans", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saber (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabre", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabred", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabring", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sabers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabres", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saber\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabre\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saberbill (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saberbill", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabrebill", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saberlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saberlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabrelike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saberlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabrelikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saberlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabrelike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sabertooth (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sabertooth", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sabretooth", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saccharization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saccharization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saccharizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saccharize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saccharize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saccharized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saccharizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saccharizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saccharises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sacerdotalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sacerdotalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacerdotalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacerdotalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacerdotalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacerdotalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacerdotalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacerdotalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacerdotalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sacralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sacralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sacralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sacralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sacramentize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sacramentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacramentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sacramentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sacramentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Safier (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Safier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Safire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Safier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Safire\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sailorizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sailorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sailorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sailorizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sailorisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sailorizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sailorising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sake (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sake", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sakes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sake\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sake", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saki", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sakes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sakis", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sake\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "saki\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("salable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "salable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saleable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "salabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saleabler", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "salablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saleablest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("salinization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "salinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "salinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("salinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "salinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "salinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "salinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "salinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saltiers (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saltiers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saltires", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saltierwise (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saltierwise", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saltirewise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saltpeter (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saltpeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saltpetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saltpeters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saltpetres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saltpeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saltpetre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sanctuarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sanctuarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanctuarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanctuarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanctuarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanctuarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanctuarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanctuarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanctuarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sandal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sandaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sandalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sandaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sandalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sanferd (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sanferd", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanfred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sanferd\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanfred\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sanforize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sanforize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanforise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sanforizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanforising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sanforizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanforises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sanitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sanitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sanitize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sanitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sanitizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sanitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sanitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sanitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sanskritize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sanskritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanskritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sanskritize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sanskritise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sapientize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sapientize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sapientise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sapientizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sapientises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sapor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sapor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sapors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sapremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sapremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sapremias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapraemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sapremia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapraemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sapremic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sapremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sapraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sarcine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sarcine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sarcinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sari (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sari", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "saree", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saris", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sarees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sari\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "saree\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sassanide (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sassanide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sassanidae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satellitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satellitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satellitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satellitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satellitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satellitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satellitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satellitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satellitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satirizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satirizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satirization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satirization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satirize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satirize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("satirizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "satirizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satiriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satirisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "satirizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "satiriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sative (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sative", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sativae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "saveable", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savagize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savagize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "savagise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savagizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "savagises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Savannah (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Savannah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savanna", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "savannah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savannas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "savannahes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savanna\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "savannah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savior (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savioress (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savioress", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saviouress", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saviorhood (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saviorhood", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourhood", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saviorhoods", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourhoods", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saviorhood\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourhood\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("saviorship (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "saviorship", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourship", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saviorships", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourships", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "saviorship\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "saviourship\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorily (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorily", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourily", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorilies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourilies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savoriness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savoriness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouriness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorinesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourinesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoriness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouriness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savoringly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savoringly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouringly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoringlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouringlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoringlies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouringlies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoringliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouringliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorless (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorlesser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourlesser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorlessest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourlessest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savorous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "savourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorouser", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "savourouser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorousest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "savourousest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("savory (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "savory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savoury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savorier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savourier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savories", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savoriest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savouriest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "savory\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "savoury\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Saxonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Saxonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Saxonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Saxonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Saxonizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Saxonising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scalawag (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scalawag", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scallywag", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scalawags", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scallywags", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scalawag\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scallywag\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scallop (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scallop", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scollop", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scalloped", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scolloped", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scalloping", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scolloping", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scallops", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scollops", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scallop\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scollop\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scandal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scandaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scandalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scandalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scandalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scandalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scandalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scandalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scandalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scandaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scaped (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scaped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scapaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scary (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scary", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scarey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scena (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scena", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scaena", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scenarioization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scenarioization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarioisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarioizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarioisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarioization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarioisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scenarioize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scenarioize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarioise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarioizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarioises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scenarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scenarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scenarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scenarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scenarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scenarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scepter (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scepter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sceptered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sceptering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scepters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scepter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scepterdom (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scepterdom", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptredom", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scepterless (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scepterless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scepterlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scepterlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sceptrelesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Scevor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Scevor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Scevour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scevor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Scevour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schedulize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schedulize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schedulise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schedulizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schedulises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schemata (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schemata", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schemas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schematization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schematization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schematize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schematizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schematizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schematizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schematisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schillerization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schillerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schillerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schillerize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schillerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schillerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schillerizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schillerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schillerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schismatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schismatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schismatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schismatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schismatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schismatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schismatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schismatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "schismatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schistocelia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schistocelia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "schistocoelia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schlemiel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schlemiel", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shlemiel", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schlemiels", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shlemiels", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schlemiel\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shlemiel\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schlep (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schlep", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schlepp", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shlep", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shlepp", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schlepped", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shlepped", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schlepping", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shlepping", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schleps", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schlepps", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shleps", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shlepps", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schlep\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schlepp\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shlepp\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shlep\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schlock (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schlock", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schlocky", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shlock", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shlocky", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schmaltz (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schmaltz", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmalz", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shmaltz", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schmaltzes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmalzes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shmaltzes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schmaltz\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmalz\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shmaltz\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schmaltzy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schmaltzy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmalzy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schmo (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schmo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmoe", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schmo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schmoe\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("schnapps (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "schnapps", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schnaps", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "schnapps\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schnaps\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scientize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scientize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scientise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scientized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scientised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scientizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scientising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scientizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scientises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sclere (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sclere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sclerotization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sclerotization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sclerotization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sclerotize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sclerotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sclerotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sclerotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sclerotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sclerotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scorse (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scorse", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scourse", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scorsed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scoursed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scorsing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scoursing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scorses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "scourses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Scotticize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Scotticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Scotticizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Scotticising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scripturalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scripturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scripturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scripturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scripturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrod (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrod", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schrod", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrods", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schrods", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrod\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schrod\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrunchy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrunchy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scrunchie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrunchy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "scrunchie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrutinization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrutinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrutinize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrutinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrutinizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrutinizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutiniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutiniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("scrutinizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "scrutinizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "scrutinizinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "scrutinisinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("se (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "se", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "se", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "soe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seborrhea (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seborrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seborrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seborrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seborrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seborrhea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seborrhoea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seborrheic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seborrheic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seborrhoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectarianization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectarianization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectarianisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectarianize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectarianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectarianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectarianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectarianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectionalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectionalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectionalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectionization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectionize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sectorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sectorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sectorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sectorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("secularization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "secularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("secularize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "secularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("secularizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "secularizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seculariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "secularisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "secularizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seculariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seculum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seculum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saeculum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seculums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saeculums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("securitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "securitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "securitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("securitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "securitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "securitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "securitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "securitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "securitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Seed (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Seed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Saeed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Seed\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Saeed\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seizin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seizin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seizins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seizin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seizings (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("selle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "selle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sellae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("selvage (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "selvage", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "selvedge", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "selvages", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "selvedges", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "selvage\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "selvedge\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Semenov (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Semenov", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Semaenov", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semenov\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Semaenov\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semianesthetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semianesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "semianaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semicarbonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semicarbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicarbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semicarbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicarbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semicivilization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semicivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semicivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semicivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semicivilized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semicivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semicivilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiciviliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semicivilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semicivilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semifossilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semifossilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semifossilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semifossilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semifossiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semifossilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semifossilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semihonor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semihonor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "semihonour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semihonors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "semihonours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semihonor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "semihonour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semihumanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semihumanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semihumanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semihumanizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semihumaniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semihumanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semihumanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semimercerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semimercerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimercerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semimercerizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimerceriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semimercerized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimercerised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semimineralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semimineralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimineralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semimineralizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimineraliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semimineralized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semimineralised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seminarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seminarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seminarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seminarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seminarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seminationalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seminationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seminationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seminationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seminationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "seminationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "seminationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semiorganized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semiorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semiorganizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiorganiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semiorganized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiorganised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semioxidized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semioxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semioxidizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxidiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semioxidized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxidised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semioxygenized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semioxygenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxygenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semioxygenizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxygeniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semioxygenized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semioxygenised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semiprofessionalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semiprofessionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiprofessionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semiprofessionalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiprofessionaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semiprofessionalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semiprofessionalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semite (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "semitae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Semiticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Semiticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semiticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semiticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semiticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semiticize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semiticise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Semitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Semitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Semitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Semitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Semitizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Semitising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semivulcanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semivulcanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semivulcanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semivulcanizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semivulcaniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "semivulcanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "semivulcanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("semper (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "semper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sempre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("senilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "senilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "senilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "senilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "senilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensationalize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensitization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensitize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensitizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensitizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensitizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensitiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sensualize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sensualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sensualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sensualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sentimentalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sentimentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sentimentalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sentimentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sentimentalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sentimentalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentimentalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sentimentalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sentinel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sentineled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sentinelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sentineling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sentinelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sepaled (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sepaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepaledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepalledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepaleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepalleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Septembrizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Septembrizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Septembriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Septembrizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Septembrisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Septembrizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Septembriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "septaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septet (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "septette", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "septette\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septetes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "septettes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septicemia (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septicemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septicemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septicemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septicemic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septicemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septicization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septicization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septicizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "septicization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "septicisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("septicolored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "septicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "septicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sepulcher (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sepulcher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepulchered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepulchering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepulchers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepulcher\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sepulchralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sepulchralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sepulchralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sepulchralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sequentialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sequentialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sequentialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sequentialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sequentialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sequentializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sequentialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sequentializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sequentialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serape (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serape", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sarape", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serapes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sarapes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serape\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sarape\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serializability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serializability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serializable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serializable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serialization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serialize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sericitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sericitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sericitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sericitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sericitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sermonize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sermonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sermonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sermonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sermonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sermonizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sermonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sermonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sermonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sermoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serose (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "serosae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serpentinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serpentinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serpentinize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serpentinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serpentize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serpentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "serpentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "serpentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("serre (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "serre", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "serrae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("servilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "servilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "servilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "servilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "servilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("seta (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "seta", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "saeta", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("setule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "setule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "setulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("severalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "severalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "severalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("severization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "severization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "severizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "severization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("severize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "severize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "severizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "severises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sextet (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sextet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sextette", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sextet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sextette\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sextetes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sextettes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sexualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sexualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sexualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sexualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sexualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sexualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sexualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sexualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sexualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sexualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Shakespearize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Shakespearize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shakespearise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shakespearizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shakespearises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shakespearize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shakespearise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shard (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shard", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherd", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pottery fragments"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shards", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherds", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pottery fragments"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shard\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherd\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("pottery fragments"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shareable (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shareable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sharable", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sharpie (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sharpie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sharpy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sharpie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sharpy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sheik (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sheikh", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sheik", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaykh", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaikh", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("Arab chief"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheikhs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sheiks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaykhs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaikhs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("Arab chief"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheikh\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sheik\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaykh\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shaikh\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("Arab chief"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheik", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sheikh", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheiks", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sheikhs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheik\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sheikh\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sheikdom (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sheikdom", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sheikhdom", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheikdoms", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sheikhdoms", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sheikdom\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sheikhdom\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shellac (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shellac", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shellack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shellacs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shellacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shellac\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shellack\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shepherdize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shepherdize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "shepherdise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shepherdizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "shepherdises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sher (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shoer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sherardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sherardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sherardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sherardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sherardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sherardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sherardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sherardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sherardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sherbet (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sherbet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherbert", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sherbets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherberts", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sherbet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sherbert\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Shere (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Shere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Shree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shere\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Shree\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shillelagh (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shillelagh", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shillalah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shillelagh\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shillalah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shillelaghes (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shillelaghes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shillalahes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Shintoize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Shintoize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shintoise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shintoizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shintoises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shintoize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Shintoise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shit (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shit", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shat", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: true, + description: Some("past tense"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Shkoder (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Shkoder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Shkodaer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Shkoder\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Shkodaer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shorty (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shorty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shortie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shorty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shortie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shovel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shoveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shovelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shoveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shovelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shoveler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shoveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shoveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shovelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shovellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shoveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "shoveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shrivel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shriveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shrivelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shriveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "shrivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("shtick (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "shtick", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shtik", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "schtick", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shticks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "shtiks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "schticks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "shtick\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "schtick\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "shtik\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sialorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sialorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sialorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siderealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siderealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "siderealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siderealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "siderealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("signal (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "signaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "signalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "signaller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signalers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "signallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signaler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "signaller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "signalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("signalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "signalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "signalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("signalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "signalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "signalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "signalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "signalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "signalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "signalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "siloed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silicatization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silicatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silicatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silicatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silicatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silicatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silicatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siliceous (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siliceous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "silicious", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silicidize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silicidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silicidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silicidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silicidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siliconize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siliconize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "siliconise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siliconizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "siliconises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silicule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silicule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "siliculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silique (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silique", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "siliquae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silverize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silverized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silverised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silverizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silverising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("silverizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "silverizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silveriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silverizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silverisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "silverizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "silveriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("similarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "similarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "similarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("similize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "similize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "similized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "similizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "similizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "similises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("simonize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "simonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "simonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sine (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sine\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Sinae\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("singularization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "singularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "singularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "singularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("singularize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "singularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "singularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "singularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "singularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "singularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sinicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sinicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sinicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sinicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sinicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sinicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sinicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sinicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sinicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphon (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphon", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphoned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphoned", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphoning", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphoning", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphons", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphon\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonless", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonlesses", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonlike", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphonlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonlikes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphonlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonlike\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonophore (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonophore", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonophore", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphonophore\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonophore\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonostele (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonostele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonostele", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "siphonostele\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonostele\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonostelic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonostelic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonostelic", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("siphonostely (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "siphonostely", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphonostely", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sirenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sirenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sirenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sirenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sirenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sirree (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sirree", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "siree", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sirrees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sirees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sirree\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "siree\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sisterize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sisterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sisterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sisterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sisterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sistern (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sistern", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sistren", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sizable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sizeable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sizableness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sizableness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sizeableness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sizably (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sizeably", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sizel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sizel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sisel", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "skere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeletonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeletonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeletonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeletonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeletonizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeletonizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletoniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletonisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeletonizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skeletoniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeptic (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeptic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sceptic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeptics", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sceptics", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skeptic\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sceptic\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeptical (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeptical", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sceptical", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticaler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticalest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticalest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skeptically (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skeptically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sceptically", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skepticism (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skepticism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticism", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticisms", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "scepticism\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skepticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skepticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skepticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skepticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "skepticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skillful (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skillful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "skilful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skillfully (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skillfully", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "skilfully", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skillfulness (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skillfulness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "skilfulness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skillfulness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "skilfulness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skulduggery (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skulduggery", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "skullduggery", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skulduggery\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "skullduggery\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("skyer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "skyer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "skyre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "skyers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "skyres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Slavicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Slavicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Slavization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Slavization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Slavize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Slavize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Slavonicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Slavonicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Slavonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Slavonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Slavonizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Slavonising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sle (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sle", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "slae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("slenderize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "slenderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "slenderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "slenderized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "slenderised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "slenderizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "slenderising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "slenderizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "slenderises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sley (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "slier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "slyer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "slyest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sloganize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sloganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sloganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sloganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sloganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sloganizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sloganising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sloganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sloganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sloganizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sloganisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sluggardize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sluggardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sluggardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sluggardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sluggardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sluggardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sluggardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sluggardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sluggardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("slumberous (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "slumberous", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "slumbrous", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("slyly (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "slyly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "slily", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("smidgen (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "smidgen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "smidgeon", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidge", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidgin", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smidgens", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "smidgeons", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidges", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidgins", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smidgen\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "smidgeon\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidge\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smidgin\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(3),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("smolder (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "smolder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smoulder", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smoldered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smouldered", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smoldering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smouldering", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smolders", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smoulders", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smolder\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "smoulder\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("smoothie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "smoothie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "smoothy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "smoothie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "smoothy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snivel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sniveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snivelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sniveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "snivelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snivellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sniveler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sniveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sniveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "snivelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snivellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sniveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sniveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snobsniveling (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "snobsniveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snobsnivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snorkel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "snorkeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "snorkelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "snorkeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "snorkelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snowplow (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "snowplow", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "snowplough", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "snowplow\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "snowplough\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "snowplows", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "snowploughs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snowshed (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "snowshed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snowshoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("snuffcolored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "snuffcolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "snuffcoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sol (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "so", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sol", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "so", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sols", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sos", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sol\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "so\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sol", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sols", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sol\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soberize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soberize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soberise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soberized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soberised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soberizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soberising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soberizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soberises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sobriquet (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sobriquet", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "soubriquet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sobriquets", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "soubriquets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sobriquet\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "soubriquet\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("socialization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "socialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("socialize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "socialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("socializer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "socializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "socializer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "socialiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sockdologizing (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sockdologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sockdologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Socratize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Socratize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Socratizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Socratising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sodomize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sodomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sodomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sodomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sodomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sodomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sodomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sodomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sodomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("softy (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "softy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "softie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "softy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "softie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soignee (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soignee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solarize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soldierize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soldierize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soldierise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soldierizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soldierises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solecize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solecize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solecized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solecizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solecizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solecises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solemnization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solemnization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solemnize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solemnize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solemnizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solemnizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemnisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solemnizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solemniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soliloquization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soliloquization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soliloquize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soliloquize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soliloquizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soliloquizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soliloquizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soliloquizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soliloquizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "soliloquisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solmization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solmization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solmisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solmizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solmisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solmization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solmisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solubilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solubilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solubilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solubilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solubilize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solubilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solubilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solubilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solubilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solubilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solutize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solutize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solutise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solutizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solutises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("solutizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "solutizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solutiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solutizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solutisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "solutizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "solutiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somber (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombre", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somberer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombrer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somberest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombrest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somberish (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somberish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombreish", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somberly (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somberly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombrely", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somberness (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somberness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombreness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sombernesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombrenesses", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somberness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sombreness\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "somaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somesthesis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somesthesis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "somaesthesis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("somniloquize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "somniloquize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "somniloquise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somniloquized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "somniloquised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somniloquizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "somniloquising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "somniloquizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "somniloquises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sonantized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sonantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonantizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonantiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonantized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonantised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sonnetization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sonnetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonnetization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sonnetize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sonnetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonnetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonnetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sonnetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sonnetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sorbitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sorbitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sorbitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sorbitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sorbitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sorbitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sorbitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sorbitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sorbitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sord (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sord", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sourd", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sordine (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sordine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sourdine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sordines", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sourdines", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sororize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sororize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sororise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sororized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sororised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sororizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sororising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sororizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sororises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sory (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "soury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("souffled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "souffled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "soufflaed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soulter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soulter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "soultre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("southernize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "southernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "southernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "southernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "southernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "southernizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "southernising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "southernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "southernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sovietization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sovietization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sovietisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sovietization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sovietisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Sovietize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Sovietize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sovietise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sovietized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sovietised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Sovietizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Sovietising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sovietizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sovietises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("soy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "soy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("sauce"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "soya", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("soybean"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "soy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "soya\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("soybean"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spacey (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spacey", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spacy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spanemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spanemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spanaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spanemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spanemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spanaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Spaniardization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Spaniardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spaniardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spaniardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Spaniardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Spaniardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spaniardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spaniardize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spaniardise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spaniolize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spaniolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spaniolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spaniolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spaniolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spaniolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spaniolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spaniolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spaniolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Spanishize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Spanishize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spanishise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spanishizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spanishises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spanishize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spanishise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spanopnea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spanopnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spanopnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sparers (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sparers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sparres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Spartanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Spartanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spartanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spartanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spartanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spartanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Spartanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spatialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spatialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spatialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spatializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spatialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spatialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spatialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spatialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spatialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spatialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spatializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spatialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specialization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specialize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specializer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specializers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specializer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specialty (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specialty", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "speciality", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specialties", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specialities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specialty\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "speciality\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specificize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specificize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specificise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specificizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specificises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specimenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specimenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specimenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specimenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "specimenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specter (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spectered (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spectered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("specterlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "specterlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectrelike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specterlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectrelikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "specterlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectrelike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spectrocolorimetry (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spectrocolorimetry", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectrocolourimetry", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spectrocolorimetry\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spectrocolourimetry\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("speer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "speer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spere", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "speer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spere\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spelean (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spelean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spelaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("speleological (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "speleological", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "spelaeological", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("speleothem (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "speleothem", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spelaeothem", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "speleothems", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spelaeothems", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spelled (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spelled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "spelt", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spelt", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some(" species of wheat"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spermatorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spermatorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spermatorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spermatorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spermatorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("speronares (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "speronares", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "speronaroes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sphenethmoid (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sphenethmoid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sphenoethmoid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sphenethmoidal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sphenethmoidal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sphenoethmoidal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spherocrystal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spherocrystal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sphaerocrystal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spheroidization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spheroidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spheroidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spheroidize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spheroidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spheroidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spheroidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spheroidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spheroidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spherosome (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spherosome", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sphaerosome", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spic (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spick", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "spik", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spics", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spicks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "spiks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spic\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spick\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "spik\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Spiers (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Spiers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Spires", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Spiers\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Spires\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spilled (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spilled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "spilt", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spinule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spinule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spinulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiral (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiraled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "spiralled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiraling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "spiralling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spirea (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spirea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiraea", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spireas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiraeas", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spirea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiraea\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiritize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiritize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiritualization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiritualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiritualize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiritualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spiritualizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spiritualizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spiritualizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spiritualiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spirochetal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spirochetal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spirochete (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spirochete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaete", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spirochetes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spirochete\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaete\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spirochetosis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spirochetosis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetosis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spirochetoses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetoses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spirochetosis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetosis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spirochetotic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spirochetotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spirochaetotic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("splanchnocele (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "splanchnocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "splanchnocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("splendor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "splendor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "splendour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "splendors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "splendours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "splendor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "splendour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("splendorproof (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "splendorproof", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "splendourproof", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("splenectomized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "splenectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "splenectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("splenization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "splenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "splenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "splenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "splenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spoiled (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spoiled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "spoilt", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spumoni (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spumoni", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spumone", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spumonis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spumones", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "spumoni\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "spumone\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("spyer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "spyer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "spyre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("squame (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "squame", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "squamae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("squamule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "squamule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "squamulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Squier (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Squier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Squire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Squier\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Squire\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("squirrel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "squirreled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "squirrelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "squirreling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "squirrelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stabilizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stabilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stabilization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stabilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stabilizator (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stabilizator", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisator", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizators", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisators", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stabilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stabilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stabilizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stabilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stabilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stabiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stageyness (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stageyness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stagy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stagy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stagey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stallionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stallionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stallionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stallionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stallionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stalwartize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stalwartize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stalwartise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stalwartizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stalwartises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stammelcolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stammelcolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stammelcolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("standardizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "standardizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("standardization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "standardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("standardize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "standardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("standardizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "standardizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "standardizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "standardiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stanzes (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stanzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stanzoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stapedectomized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stapedectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stapedectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("staphyledema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "staphyledema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "staphyloedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("statisticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "statisticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "statisticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "statisticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "statisticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stearrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stearrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stearrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("steatorrhea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "steatorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "steatorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "steatorrheas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "steatorrhoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stele (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stelae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stencil (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stenciled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stencilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stenciling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stencilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stenciler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stenciler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stenciller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stencilers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stencillers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stenciler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stenciller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stencilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stencilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stencilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stenopeic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stenopeic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stenopaeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stentor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stentor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stentour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stentors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stentours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stercoremia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stercoremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stercoraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stere (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stere", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stree", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sterilizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sterilizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sterilizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sterilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sterilization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sterilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sterilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sterilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sterilizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sterilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "steriliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sterilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sterilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "steriliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stert (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stert", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stret", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stigmatization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stigmatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stigmatize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stigmatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stigmatizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stigmatizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stigmatizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stigmatiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stilbestrol (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stilbestrol", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stilboestrol", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stilbestrols", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stilboestrols", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stilbestrol\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stilboestrol\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stimuli (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stimuli", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stimuluses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stipule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stipule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stipulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stockinette (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stockinette", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stockinet", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stockinettes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stockinets", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stockinette\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stockinet\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stogie (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stogie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stogy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stogie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stogy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stomatodeum (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stomatodeum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomatodaeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stomodea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stomodea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomodaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stomodeal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stomodeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomodaeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stomodeum (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stomodeum", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomodaeum", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stomodeums", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomodaeums", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stomodeum\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stomodaeum\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stony (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stony", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stoney", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "stoor", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("storier (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "storier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stourier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("story (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "story", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("book"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stories", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("book"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "story\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("book"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "story", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "storey", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("level of building"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stories", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "storeys", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("level of building"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "story\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "storey\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("level of building"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stower (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stower", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stowre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stowers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stowres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("straitjacket (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "straitjacket", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "straightjacket", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "straitjacketed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "straightjacketed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "straitjacketing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "straightjacketing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "straitjackets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "straightjackets", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "straitjacket\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "straightjacket\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("strata (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "strata", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stratums", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("strobile (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "strobile", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "strobilae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("strobilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "strobilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strobilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "strobilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strobilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "strobilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strobilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("structuralization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "structuralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "structuralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "structuralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "structuralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "structuralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "structuralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("structuralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "structuralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "structuralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "structuralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "structuralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("strychninization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "strychninization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strychninisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "strychninizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strychninisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "strychninization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strychninisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("strychninize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "strychninize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strychninise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "strychninizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "strychninises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stumor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "stumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sty (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sties", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stied", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stying", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sties", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sty", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stye", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sties", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "styes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sty\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stye\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stylization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stylization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stylize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stylize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stylizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stylizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "styliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stylizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "styliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stylopized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stylopized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "stylopised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("stymie (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "stymie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stymy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stymied", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stymyed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "stymie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "stymy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subarmor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subarmor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subarmour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subarmors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subarmours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subarmor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subarmour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subcaliber (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subcaliber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subcalibre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subcategorizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subcategorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subcategorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subcenter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subcenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subcentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subduer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subduer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subdure", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suberate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suberate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subaerate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suberization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suberization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suberizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suberization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suberize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suberize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suberized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suberizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suberizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suberises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subesophageal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subesophageal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "suboesophageal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subetheric (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subetheric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subaetheric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subflavor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subflavor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subflavour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subflavors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subflavours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subflavor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subflavour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subjectivization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subjectivization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subjectivizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subjectivization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subjectivize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subjectivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subjectivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subjectivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subjectivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subjectivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sublimize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sublimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sublimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sublimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sublimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sublimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sublimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sublimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sublimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subminiaturization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subminiaturization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subminiaturization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subminiaturize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subminiaturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subminiaturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subminiaturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subminiaturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subminiaturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subpoena (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subpoena", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "subpena", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpoenaed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "subpenaed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpoenaing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "subpenaing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpoenas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "subpenas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpoena\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "subpena\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subpulverizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subpulverizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subpulveriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpulverizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subpulverisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subpulverizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subpulveriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subsidizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subsidizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subsidization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subsidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subsidize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subsidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subsidizer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subsidizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subsidizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subsidiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subspecialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subspecialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subspecialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subspecializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subspecialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subspecialize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subspecialise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subspecialty (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subspecialty", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subspeciality", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subspecialties", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subspecialities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subspecialty\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subspeciality\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("substandardize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "substandardize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substandardise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substandardizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substandardises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("substantialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "substantialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("substantivize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "substantivize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantivise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantivized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantivised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantivizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantivising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "substantivizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substantivises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("substerilization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "substerilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "substerilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subterraneanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subterraneanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subterraneanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subterraneanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subterraneanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subtilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subtilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subtilize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subtilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subtilizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subtilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subtilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subtotal (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subtotaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subtotalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subtotaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "subtotalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suburbanization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suburbanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suburbanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suburbanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suburbanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suburbanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suburbanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suburbanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suburbanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suburbanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subvitalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subvitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subvitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("subvitalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "subvitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subvitalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subvitalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subvitalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "subvitalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "subvitalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "succourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succorers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "succorer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorful (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourful", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorless (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "succourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "succourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "succorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("succube (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "succube", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "succubae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suers (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sures", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("suggestionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "suggestionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suggestionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "suggestionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "suggestionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulcalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulcalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulcalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulcalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulcalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulcalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulcalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulcalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulcalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfate (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfate\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphate\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfatize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulfatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulfatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfide (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphide", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfide\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphide\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfides", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphides", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfur (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfur", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sulphur", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfured", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sulphured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfuring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sulphuring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sulphurs", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfur\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "sulphur\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfur", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("Chemistry"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfured", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("Chemistry"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfuring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("Chemistry"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("Chemistry"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfur\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("Chemistry"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfuric (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfuric", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphuric", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfurization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfurization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfurize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurizing", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sulfurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sulphurizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sulfurous (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sulfurous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sulphurous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sultanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sultanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sultanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sultanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sultanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sumac (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sumac", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sumach", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sumacs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sumaches", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sumac\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sumach\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("summarizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "summarizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("summarization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "summarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("summarize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "summarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("summarizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "summarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("summerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "summerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "summerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "summerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superacknowledgment (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superacknowledgment", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "superacknowledgement", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superacknowledgments", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "superacknowledgements", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superacknowledgment\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "superacknowledgement\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supercanonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supercanonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercanonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercanonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercanonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercanonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercanonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supercarbonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supercarbonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercarbonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercarbonizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercarbonisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercarbonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercarbonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supercarbonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supercarbonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercarbonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercarbonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercarbonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supercivilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supercivilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercivilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercivilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercivilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercivilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercivilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supercivilized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supercivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercivilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superciviliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supercivilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supercivilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superemphasize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superfetation (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superfetation", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "superfoetation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superfetations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "superfoetations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superficialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superficialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superficialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superficialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superficialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superficializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superficialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superficializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superficialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superhumanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superhumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superhumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superhumanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superhumanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superhumanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superhumanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superhumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superhumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supernaturalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supernaturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supernaturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supernaturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supernaturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supernaturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supernaturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supernaturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supernaturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superorganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superorganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superorganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersensitization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersensitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supersensitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supersensitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersensitize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersensitized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersensitizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("superspecialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "superspecialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superspecialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "superspecializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "superspecialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersubtilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersubtilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersubtilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supersubtilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersubtiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supersubtilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersubtilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("supersulphurize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "supersulphurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersulphurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "supersulphurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "supersulphurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("surgerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "surgerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "surgerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "surgerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "surgerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("surprizal (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "surprizal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "surprisal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sursize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sursize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sursise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("surveil (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "surveil", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "surveille", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "ODE lists surveille as a variant, m-w doesn\'t only acknowledges", + "\"surveil\"", + ], + }, +Cluster { + header: Some("swab (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "swab", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "swob", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "swabbed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "swobbed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "swabbing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "swobbing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "swabs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "swobs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "swab\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "swob\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sweepstakes (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sweepstakes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sweepstake", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sweep-stake", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sweepstakes\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "sweepstake\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sweep-stake\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sweetbrier (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sweetbrier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sweetbriar", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sweetbriers", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sweetbriars", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sweetbrier\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "sweetbriar\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("swivel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "swiveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "swivelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "swiveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "swivelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sycophantize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sycophantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sycophantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sycophantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sycophantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sycophantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sycophantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sycophantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sycophantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syllabize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syllabize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllabise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllabized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllabised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllabizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllabising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllabizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllabises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syllogization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syllogization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllogizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syllogize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syllogize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllogizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllogizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syllogizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syllogizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syllogizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syllogisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sylvan (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sylvan", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "silvan", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sylvanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sylvanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sylvanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sylvanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sylvanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sylviine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sylviine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "sylviinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symbol (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symboled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symboling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symbolization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symbolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symbolize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symbolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symbolizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symbolizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symboliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symbolisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symbolizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symboliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symmetrically (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symmetrically", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetricly", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symmetricalness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symmetricalness", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetricness", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetricalnesses", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetricnesses", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symmetrization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symmetrization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetrizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetrization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symmetrize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symmetrize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetrizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symmetrizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symmetrises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sympathize (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sympathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sympathizer (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sympathizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sympathizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sympathizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sympathizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "sympathisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symphonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symphonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symphonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symphonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symphonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symphonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symphonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symphonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symphonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symphonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symphonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symphonizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symphonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symphonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symptomatize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symptomatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symptomatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symptomatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symptomatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("symptomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "symptomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "symptomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "symptomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synagogue (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synagogue", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "synagog", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synagogues", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "synagogs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synagogue\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "synagog\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synalepha (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synalepha", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaloepha", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synalephas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaloephas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synalephe (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synalephe", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaloephe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("sync (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "sync", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synch", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synced", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synched", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syncing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synching", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syncs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synches", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "sync\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synch\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synchronizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synchronizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synchronization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synchronization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synchronize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synchronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synchronizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synchronizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchroniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchronisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synchronizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synchroniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syncretize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syncretize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syncretise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syncretized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syncretised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syncretizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syncretising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syncretizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syncretises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syndicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syndicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syndicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syndicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syndicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synecious (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synecology (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synecology", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecology", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synecologies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecologies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syneresis (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syneresis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaeresis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synereses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaereses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syneresis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synaeresis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synergize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synergize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synergise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synergized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synergised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synergizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synergising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synergizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synergises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synestheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaestheticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synestheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "synaestheticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synetic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "synoetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synoecize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synoecize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synoecized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synoecizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synoecizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synoecises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synonymize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synonymize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synonymise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synonymized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synonymised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synonymizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synonymising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synonymizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synonymises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synopsize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synopsize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synopsise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synopsized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synopsised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synopsizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synopsising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synopsizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synopsises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synthesization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synthesization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synthesize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synthesize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetize", + types: &[ + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetized", + types: &[ + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetizing", + types: &[ + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetizes", + types: &[ + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synthesizer (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synthesizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesiser", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesisers", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthesizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthesiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synthetization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synthetization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("synthetizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "synthetizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthetizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "synthetizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "synthetiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syntonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syntonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syntonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syntonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syntonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syntonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syntonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syntonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syntonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syphilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syphilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syphilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syphilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syphilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syphilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syphilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syphilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "syphilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Syrianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Syrianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Syrianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Syrianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Syrianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Syrianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Syrianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syringocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syringocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "syringocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("syrup (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "syrup", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirup", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syrups", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirups", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "syrup\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "sirup\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systematization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systematization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systematize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systematize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systematizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systematizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systematizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systematiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systemizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systemizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systemization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systemization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systemize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("systemizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "systemizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "systemizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "systemiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taboo (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taboo", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tabu", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabooed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tabued", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabooing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tabuing", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taboos", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tabus", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taboo\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tabu\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tabored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tabored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taborer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taborer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taborers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taborer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taboret (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taboret", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabouret", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taborets", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourets", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taboret\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabouret\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taborin (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taborin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taborins", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourins", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taborine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taborine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabourine", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tabularization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tabularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tabularize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tabularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tabularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tabularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tabule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tabule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tabulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tachypnea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tachypnea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tachypnoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tachypneas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tachypnoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tachypneic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tachypneic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tachypnoeic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taffetized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taffetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "taffetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tailorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tailorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tailorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tailorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tailorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tailorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tailorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tailorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tailorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tailorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tailorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tailorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Talmudization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Talmudization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Talmudizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Talmudization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Talmudize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Talmudize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Talmudizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Talmudize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Talmudise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tamable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tamable", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tameable", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tambura (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tambura", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tamboura", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tamburas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tambouras", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tambura\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tamboura\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Tammanyize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Tammanyize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tammanyise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tammanyizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tammanyises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tammanyize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tammanyise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tanalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tanalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tanalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tandemize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tandemize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tandemise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tandemizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tandemises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tantalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tantalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tantalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tantalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tantalizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tantalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tantalizingly (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tantalizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizinglies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisinglies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tantalizingness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tantalizingness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisingness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tantalizingnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tantalisingnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tariffize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tariffize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tariffise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tariffizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tariffises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tartarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tartarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tartarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tartarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tartarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tartarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tartarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tartarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tartarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tartarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tassel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tassel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tasseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tasselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tasseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tasselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tassels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "tassells", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tautologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tautologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tautologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tautologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tautologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tautologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tautologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tautologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tautologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tavernize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tavernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tavernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tavernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tavernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("taxidermize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "taxidermize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "taxidermise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taxidermized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "taxidermised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taxidermizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "taxidermising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "taxidermizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "taxidermises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Taylorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Taylorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Taylorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Taylorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Taylorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Taylorize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Taylorise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("te (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "te", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teasel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teasel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teazle", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "teazel", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teasels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teazles", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "teazels", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teasel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teazle\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(1),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "teazel\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: Some(2),}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaselling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":ing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaselings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teasellings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":ing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaseling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaselling\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: Some(":ing"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teasel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaselled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaselling", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teasels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teaseler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teaseler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaseller", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaselers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teasellers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teaseler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "teaseller\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Tebilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Tebilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tebilizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tebilising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("technicalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "technicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("technicalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "technicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "technicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("technicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "technicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "technicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "technicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "technicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Technicolor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Technicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "Technicolour", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Improper), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("trademark"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Technicolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "Technicolours", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Improper), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("trademark"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Technicolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "Technicolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Improper), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Improper), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("trademark"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "technicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicolour", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("technicolored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "technicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "technicoloured", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("technologize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "technologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "technologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teaer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teetotal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teetotaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teetotalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teetotaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teetotalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teetotaler (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teetotaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teetotaller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teetotalers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teetotallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teetotaler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "teetotaller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tegu (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tegu", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taegu", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tele (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("telepathize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "telepathize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "telepathise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telepathized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "telepathised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telepathizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "telepathising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telepathizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "telepathises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("telesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "telesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("telesthetic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "telesthetic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaesthetic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telestheticer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaestheticer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "telestheticest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "telaestheticest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tellurize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tellurize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tellurise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tellurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tellurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tellurizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tellurising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tellurizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tellurises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tels (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taels", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("templize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "templize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "templise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "templizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "templises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tempo (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tempos", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "tempi", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("temporalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "temporalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("temporization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "temporization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("temporize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "temporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("temporizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "temporizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("temporizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "temporizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "temporizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "temporisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenderization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenderization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenderize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenderize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenderizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenderizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenderizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenderiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tendinitis (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tendinitis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tendonitis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tendinitises", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tendonitises", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tendinitis\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tendonitis\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tendriled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tendriled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tendrilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenementization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenementization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenementisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenementizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenementisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenementization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenementisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenementize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenementize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenementise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenementizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tenementises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taenia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taenias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tenia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taenia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniasis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniasis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniases", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniases", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniasis\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniasis\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teniacidal (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teniacidal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniacidal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teniacide (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teniacide", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniacide", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniacides", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniacides", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniacide\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniacide\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teniae (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teniae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teniafuge (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teniafuge", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniafuge", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniafuges", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniafuges", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teniafuge\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taeniafuge\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenioid (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenioid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "taenioid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tenthmeter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tenthmeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tenthmetre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tepee (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tepee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "teepee", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tipi", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tepees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "teepees", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tipis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tepee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "teepee\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tipi\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terf (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terf", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tref", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terma (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terma", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("termatic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "termatic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trematic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terminalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terminalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terminalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terminalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terminalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terminalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terminalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terminalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terminalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ternize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ternize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ternise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ternizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ternises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terre (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terre", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "terrae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terrestrialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terrestrialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrestrialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrestrializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrestrialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("territorialization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "territorialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "territorializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "territorialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("territorialize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "territorialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "territorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "territorializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "territorializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "territorialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terrorization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terrorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terrorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terrorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terrorizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terrorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terroriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terrorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "terrorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "terroriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("terts (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "terts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trets", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("teste (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "teste", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "testae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("testimonialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "testimonialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("testimonialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "testimonialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("testimonializer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "testimonializer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "testimonializers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "testimonialisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tetanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tetanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tetanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tetanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tetanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tetrachlorethylene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tetrachlorethylene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tetrachloroethylene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tetrachlorethylenes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tetrachloroethylenes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Teutonization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Teutonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Teutonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Teutonize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Teutonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Teutonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Teutonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Teutonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Teutonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "teutonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "teutonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("texturize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "texturize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "texturise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "texturized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "texturised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "texturizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "texturising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "texturizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "texturises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thalamocele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thalamocele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thalamocoele", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thalassemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thalassemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thalassaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thalassemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thalassaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thalassemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thalassemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thalassaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theater (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theater", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "theatre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theaters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "theatres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theater\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "theatre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theatergoer (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theatergoer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatergoers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatergoer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theatergoing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theatergoing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoing", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatergoings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatergoing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatregoing\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theaterless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theaterless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatreless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theaterlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theaterlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatrelesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theaterlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theaterlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatrelike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theaterlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatrelikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theaterlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "theatrelike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theatricalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theatricalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theatricalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theatricalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theatricize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theatricize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theatricizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theatricises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theologization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theologization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theologize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theologize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theologizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theologizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theologizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theologiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Theone (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Theone", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Theonoe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Theone\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Theonoe\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theorize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theorizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theorizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theoriser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("theosophize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "theosophize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theosophise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theosophized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theosophised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theosophizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theosophising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "theosophizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "theosophises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("therap (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "therap", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "threap", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thereness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thereness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "threeness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "therenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "threenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("therme (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "therme", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermesthesia (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermaesthesia", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermaesthesia\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermoanesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermoanesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermoanaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermoanesthesias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermoanaesthesias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermoanesthesia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermoanaesthesia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermometerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermometerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermometerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermometerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermometerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermopolymerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermopolymerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermopolymerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermopolymerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermopolymerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermopolymerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thermopolymerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thermosiphon (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thermosiphon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermosyphon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermosiphons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermosyphons", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thermosiphon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thermosyphon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thesmothete (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thesmothete", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "thesmothetae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thiamine (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thiamine", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "thiamin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thiamines", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "thiamins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thiamine\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "thiamin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thralldom (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thralldom", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "thraldom", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thralldoms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "thraldoms", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thralldom\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "thraldom\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thronize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thronize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thronise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thronizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thronises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("through (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "through", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "thru", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thruway (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thruway", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "throughway", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thruways", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "throughways", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thruway\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "throughway\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thymectomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thymectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thymectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thyroidectomized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thyroidectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thyroidectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("thyroidization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "thyroidization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thyroidisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thyroidizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thyroidisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "thyroidization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "thyroidisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tidbit (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tidbit", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "titbit", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tidbits", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "titbits", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tidbit\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "titbit\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Tillford (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Tillford", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Tillfourd", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tillford\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Tillfourd\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Timonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Timonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timonizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Timonising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Timor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Timor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Timour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Timor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Timour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tinsel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tinseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tinselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tinseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tinselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tinselier (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tinselier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tinsellier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tinseliest (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tinseliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tinselliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tire (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tire", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("exhausted"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tires", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("exhausted"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tire\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("exhausted"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tire", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wheel"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tires", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("whell"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tire\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wheel"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("titer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "titer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "titre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "titres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "titre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("titivate (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "titivate", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivate", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titivated", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivated", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titivating", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivating", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titivates", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivates", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("titivation (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "titivation", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivation", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titivations", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivations", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "titivation\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tittivation\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tittup (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tittuped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tittupped", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tittuping", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tittupping", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tittupy (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tittupy", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tittuppy", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toffee (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toffee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "toffy", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toffees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "toffies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toffee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "toffy\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tog (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "togged", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "toged", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "togging", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "toging", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ton (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ton", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ton\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tonne", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric ton"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tonne\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("metric ton"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tonicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tonicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tonicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tonicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tonicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("topee (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "topee", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "topi", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("hat"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "topees", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "topis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("hat"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "topee\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "topi\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("hat"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "topi", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "topis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" [topi] antelope"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("topesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "topesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "topaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toret (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toret", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "touret", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tormentor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tormentor", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tormenter", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tormentors", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tormenters", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tormentor\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tormenter\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("torporize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "torporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "torporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "torporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "torporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Toryize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Toryize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Toryise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Toryizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Toryises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Toryize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Toryise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("total (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totaling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totalling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totaler (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totaler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totaller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totaler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totaller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totalitarianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totalitarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalitarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totalizator (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totalizator", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisator", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizators", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisators", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizator\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisator\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("totemization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "totemization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totemisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totemizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totemisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "totemization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "totemisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tourize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tourize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tourise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tourizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tourises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toward (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "towards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("towel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "towelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "towelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "towelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "towellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toweling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "towelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxanemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxanemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "toxanaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxemia (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "toxaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toxemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "toxaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "toxemia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "toxaemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxemic (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "toxaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxicemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxicemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "toxicaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxicohemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxicohemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "toxicohaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxihemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxihemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "toxihaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("toxinemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "toxinemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "toxinaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trabeate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trabeate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trabeatae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trabecule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trabecule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trabeculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tractorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tractorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tractorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tractorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tractorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tractorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tractorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tractorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tractorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tractorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tractorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tractorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("traditionalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traditionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traditionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traditionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traditionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traditionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traditionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("traditionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traditionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traditionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traditionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traditionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tragicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tragicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tragicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tragicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tragicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tragicolored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tragicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tragicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("traitorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traitorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traitorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traitorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traitorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trammel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trammeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "trammelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trammeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "trammelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trammeler (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trammeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trammeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trammelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trammellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trammeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trammeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquility (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquility", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tranquillity", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tranquillities", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquility\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tranquillity\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquilization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillize", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillized", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizing", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: true, + description: Some("normally an adj."), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizing\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: true, + description: Some("normally an adj."), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquilizer (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizer", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizers", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillizer\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquilizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquilizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquilisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquillization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquillization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquillizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tranquillization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tranquillizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tranquillizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tranquillisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transcendentalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transcendentalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcendentalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transcendentalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transcendentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcendentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcendentalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcendentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transcendentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transcolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transcolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcolorrer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcolorrest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolourest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transcoloration (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transcoloration", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolouration", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcolorations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolourations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transcoloration\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "transcolouration\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transgender (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transgender", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "transgendered", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transistorization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transistorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transistorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transistorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transistorize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transistorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transistorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transistorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transistorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transistorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("transparentize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "transparentize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transparentise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "transparentizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "transparentises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("traumatization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traumatization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traumatizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traumatization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("traumatize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traumatize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traumatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traumatizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traumatizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "traumatises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("travel (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "traveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "travelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "traveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "travelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "travellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "traveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "travelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "travelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "travellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "traveling\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "travelling\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("travelogue (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "travelogue", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "travelog", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "travelogues", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "travelogs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "travelogue\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "travelog\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trial (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trialed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trialled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trialing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trialling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trialization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("triangularization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "triangularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "triangularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("triangularize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "triangularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "triangularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "triangularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "triangularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "triangularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trichinization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trichinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trichinize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trichinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trichlorethylene (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trichlorethylene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trichloroethylene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichlorethylenes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trichloroethylenes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trichotomize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trichotomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichotomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichotomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichotomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichotomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichotomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trichotomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trichotomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tricolor (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tricolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tricolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tricolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tricolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tricolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tricolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tricolored (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tricolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tricoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("triecious (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "triecious", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trioecious", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trieciously (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trieciously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trioeciously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("triene (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "triene", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "triaene", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trifluoride (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trifluoride", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trifluouride", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trillionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trillionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trillionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trillionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trillionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trimerization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trimerization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trimerisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trimerizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trimerisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trimerization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trimerisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tripylean (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tripylean", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tripylaean", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trivialization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trivialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trivializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trivialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trivialize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trivialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trivialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trivializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trivializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trivialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trolley (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trolley", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "trolly", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trolleyed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "trollied", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trolleying", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "trollying", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trolleys", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "trollies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trolley\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "trolly\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tropeolin (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tropeolin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tropaeolin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropeolin\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tropaeolin\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tropicalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tropicalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropicalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropicalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tropicalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tropicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropicalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropicalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tropicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tropicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trowel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "troweled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trowelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "troweling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trowelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("troweler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "troweler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "troweller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trowelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "trowellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "troweler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "troweller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Trubenize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Trubenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Trubenizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Trubenising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("trypsinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "trypsinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trypsinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trypsinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trypsinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "trypsinize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "trypsinise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tsoris (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tsoris", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tsouris", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tubercularization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tubercularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubercularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tubercularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubercularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tubercularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tubercularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubercularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tubercularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tubercularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubercularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tubercularizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tubercularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubercularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberculinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberculinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberculinize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberculinize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculinizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculinises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberculization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberculization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberculize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberculize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberculizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberculises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tuberize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tuberize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tuberizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tuberises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tubulization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tubulization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubulisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tubulizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubulisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tubulization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tubulisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tularemia (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tularemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tularaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tularemias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tularaemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tularemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tularemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tularaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tumbrel (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tumbrel", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tumbril", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tumbrels", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tumbrils", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tumbrel\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tumbril\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tumor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tumor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tumour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tumors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tumours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tumor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "tumour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tumored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tunnel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tunneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunnelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tunneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunnelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tunnelings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunnellings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tunneler (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tunneler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunneller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tunnelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunnellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tunneler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tunneller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("turdine (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "turdine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "turdinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Turkicize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Turkicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkicizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkicising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Turkize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Turkize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Turkize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Turkise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Tuscanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Tuscanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tuscanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tuscanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tuscanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tuscanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tuscanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tutele (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tutele", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "tutelae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tutorization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tutorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tutorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tutorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tutorize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tutorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tutorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tutorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tutorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tutorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("twier (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "twier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "twire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "twiers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "twires", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tyke (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tyke", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tike", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tykes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tikes", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyke\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "tike\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Tylerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Tylerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tylerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tylerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tylerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Tylerize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Tylerise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("typhemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "typhemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "typhaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "typhemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "typhoemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "typhoemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "typhoaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("typhlenteritis (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "typhlenteritis", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "typhloenteritis", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tyrannize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tyrannize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tyrannizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tyrannizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyranniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyranniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tyrannizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tyrannizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyrannizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "tyrannisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("tyro (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "tyro", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "tiro", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tyreo", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyros", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "tiros", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tyreos", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "tyro\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "tiro\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "tyreo\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ukulele (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ukulele", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ukelele", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ukuleles", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ukeleles", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ukulele\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "ukelele\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ultracentralizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ultracentralizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultracentraliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultracentralizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultracentralisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultracentralizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultracentraliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ultrahonorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ultrahonorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrahonourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultrahonorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrahonourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultrahonorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrahonourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ultraspecialization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ultraspecialization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultraspecialisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultraspecializations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultraspecialisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultraspecialization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultraspecialisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ultrastandardization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ultrastandardization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrastandardisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultrastandardizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrastandardisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ultrastandardization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ultrastandardisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unacclimatized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unacclimatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unacclimatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unagonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unagonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unagonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unalcoholized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unalcoholized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalcoholised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unalcoholizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalcoholisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unalcoholizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalcoholiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unalcoholizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalcoholiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unalcoholized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalcoholised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unalphabetized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unalphabetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unalphabetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unamortization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unamortization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unamortisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unamortizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unamortisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unamortization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unamortisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unamortized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unamortized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unamortised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanalyzable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanalyzable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanalysable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanalyzed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanatomizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanatomizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanatomisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanatomized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanatomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanatomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unanaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unanimalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unanimalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanimalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unanimalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanimaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unanimalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unanimalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unantagonizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unantagonizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unantagonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unantagonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagoniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unantagonizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unantagonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unantagonizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unantagonisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unapologizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unapologizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapologising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unapologizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapologising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unapostatized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unapostatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapostatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unapostatizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapostatiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unapostatized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapostatised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unappetizing (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unappetizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unappetizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unappetizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unappetizingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unappetizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unappetizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unappetizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unappetisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unapprized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unapprized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unapprised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unarbored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unarbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unarboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unarmored (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unarmored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unarmoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unarmoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unarmouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unarmoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unarmoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unauthorize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unauthorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unauthorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unauthorized (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unauthorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unauthorizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unauthorizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthoriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unauthorizedly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unauthorizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unauthorizedness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unauthorizedness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unauthorisedness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbaptize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbaptize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbaptise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbaptized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbaptised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbaptizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbaptising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbaptizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbaptises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbarbarize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbarbarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbarbarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbarbarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbarbarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbarbarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbarbarizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbarbarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbarbarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbarricaded (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbarricaded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unbarricadoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbastardized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbastardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbastardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbastardizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbastardisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbastardizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbastardiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbeknownst (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbeknownst", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unbeknown", + types: &[ + Type {category: Category::American, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbrutalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbrutalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unbrutize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unbrutize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unbrutizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unbrutises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncanceled (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncanceled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncancelled", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanceledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncancelledder", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanceleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncancelleddest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncandor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncandor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncandour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncanonization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncanonization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanonization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncanonize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncanonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncanonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncanonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncantonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncantonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncantonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncantonizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncantoniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncantonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncantonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncapitalized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncapitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncapitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncapitalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncapitalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncapitalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncapitaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncaramelized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncaramelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncaramelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncatechized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncatechized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatechised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncatechizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatechiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncatechized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatechised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncatechizedness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncatechizedness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatechisedness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncategorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncategorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncategorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncategorizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncategorisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncategorizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncategoriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncatholicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncatholicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatholicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncatholicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatholicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncatholicizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatholicising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncatholicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncatholicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncauterized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncauterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncauterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncauterizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncauteriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncauterized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncauterised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncelestialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncelestialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncelestialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncelestializeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncelestialiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncelestialized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncelestialised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncenter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncenter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncentre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncentralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncentralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncentralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncharacterized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncharacterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncharacterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncharacterizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncharacterisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncharacterizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncharacteriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unchastizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unchastizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchastisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unchastized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unchastized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchastised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unchloridized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unchloridized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchloridised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unchloridizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchloridiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unchloridized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchloridised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unchristianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unchristianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchristianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unchristianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchristianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unchristianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchristianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unchristianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unchristianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncircularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncircularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncircularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncircularizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncircularisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncircularizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncirculariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncircularizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncirculariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncircularized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncircularised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncivilizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncivilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncivilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncivilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncivilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncivilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncivilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncivilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncivilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncivilized (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncivilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncivilizedly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncivilizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncivilizedness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncivilizedness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncivilisedness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unclericalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unclericalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unclericalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unclericalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unclericalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncognizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncolonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncolonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncolorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncolorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncolorably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncolorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncolored (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "uncoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "uncolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "uncoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "uncoloureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncoloredly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncoloredly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolouredly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloredlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolouredlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloredliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolouredliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncoloredness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncoloredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncolorednesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolourednesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncoloredness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uncolouredness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unconcerted (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unconcerted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unconcreted", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unconventionalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unconventionalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unconventionalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unconventionalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unconventionalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncriticizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncriticizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncriticizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncriticizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncriticizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncriticizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncriticizably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncriticizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncriticized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncriticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncriticizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncriticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncriticizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncriticizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncriticisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncrystallizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncrystallizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncrystallizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncrystallizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncrystallizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncrystallized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncrystallized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncrystallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uncurricularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uncurricularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncurricularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncurricularizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncurriculariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uncurricularized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uncurricularised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undefense (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undefense", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undefence", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undefenses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undefences", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undefense\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undefence\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undemagnetizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undemagnetizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemagnetisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemagnetizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemagnetisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemagnetizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemagnetisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undemocratization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undemocratization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemocratization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undemocratize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undemocratize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemocratized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemocratizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undemocratizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undemocratises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undenominationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undenominationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undenominationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undenominationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undenominationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undercapitalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undercapitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercapitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercapitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undercapitalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undercapitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercapitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercapitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercapitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undercapitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undercolor (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undercolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercolorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercolourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undercolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undercolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underemphasize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underemphasize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underemphasise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underemphasized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underemphasised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underemphasizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underemphasising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underemphasizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underemphasises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undergoer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undergoer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undergore", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underlaborer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underlaborer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "underlabourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underlaborers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "underlabourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underlaborer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "underlabourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underorganization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underorganization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underorganisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underorganizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underorganisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underorganization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underorganisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underoxidize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underoxidize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underoxidise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underoxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underoxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underoxidizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underoxidising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underoxidizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underoxidises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underprize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underprize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underprise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underprized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underprised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underprizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underprising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underprizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underprises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underrealize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underrealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underrealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underrealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underrealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underrealizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underrealising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underrealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underrealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undersavior (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undersavior", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undersaviour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undersaviors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undersaviours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undersavior\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undersaviour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undersized (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undersized", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "undersize", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underutilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underutilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underutilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underutilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("underutilize (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "underutilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underutilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underutilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "underutilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "underutilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undervitalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undervitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undervitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undervitalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undervitaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undervitalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undervitalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undialyzed (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undialyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undialysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undialyzeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undialyseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undialyzed\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undialysed\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undiphthongize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undiphthongize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undiphthongise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undiphthongizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undiphthongises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undiscolored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undiscolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undiscoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undiscoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undiscolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undiscoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undiscoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undiscoloreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undiscoloureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undiscolored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undiscoloured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undishonored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undishonored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "undishonoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undisorganized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undisorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undisorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undramatizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undramatizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undramatized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undramatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undramatized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undramatised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undreamed (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undreamed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "undreamt", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("undualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "undualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "undualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "undualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uneconomizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uneconomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneconomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unenamored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unenamored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unenamoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenamoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unenamouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenamoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unenamoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenamoreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unenamoureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenamored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unenamoured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unendeavored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unendeavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unendeavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unenergized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unenergized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unenergised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenergizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unenergiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unenergized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unenergised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unepitomized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unepitomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unepitomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unepitomizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unepitomisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unepitomizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unepitomiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unequaled (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unequaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unequaledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unequaleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unequalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unequalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unequalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unequalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unequalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unequalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uneulogized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uneulogized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneulogised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uneulogizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneulogisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uneulogizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneulogiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uneulogizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneulogiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uneulogized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uneulogised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unevangelized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unevangelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unevangelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unevangelizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unevangelisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unevangelizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unevangeliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unevangelizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unevangeliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unevangelized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unevangelised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfamiliarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfamiliarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfamiliarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfamiliarizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfamiliarisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfamiliarizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfamiliariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavorable (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavorableness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavorableness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourableness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorablenesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourablenesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorableness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourableness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavorably (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorablier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourablier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorabliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourabliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavoured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavoring (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoringer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouringer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoringest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouringest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfavorite (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfavorite", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourite", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoriter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouriter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorites", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourites", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavoritest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavouritest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfavorite\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unfavourite\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfeminize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfeminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfeminized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfeminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfeminizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfeminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfertilizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfertilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfertilized (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfertilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfertilizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertiliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfertilizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfertilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfertilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfeudalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfeudalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeudalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfeudalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeudalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfeudalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeudalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfeudalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfeudalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unflavored (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unflavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unflavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unflavoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unflavouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unflavoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "unflavoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unflavorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unflavorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unflavourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfocused (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfocused", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfocussed", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unformalized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unformalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unformalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unformalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unformalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unformalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unformaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfossilized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfossilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfossilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfossilizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfossilisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfossilizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfossiliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfossilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfossiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfossilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfossilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfraternized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfraternized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfraternised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unfraternizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unfraternizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfraternising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfraternizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfraternisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unfraternizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unfraternising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungalvanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungalvanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungalvanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungalvanizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungalvaniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungalvanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungalvanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungelatinizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungelatinizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatinisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungelatinizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatinisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungelatinizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatinisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungelatinized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungelatinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungelatinizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatiniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungelatinized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungelatinised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungeneralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungeneralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungeneralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungeneralizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungeneralisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungeneralizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungeneraliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungeneralizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungeneralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungeneralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungentilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungentilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungentilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungentilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungentilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungentlemanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungentlemanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungentlemanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungentlemanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungentlemanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unglamorous (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unglamorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unglamourous", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unglamorously (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unglamorously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unglamourously", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Possible), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungospelized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungospelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungospelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungospelizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungospeliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungospelized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungospelised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ungraphitized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ungraphitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungraphitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungraphitizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungraphitiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ungraphitized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ungraphitised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unharbor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unharbor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unharbour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unharbor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unharbour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unharbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unharboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unharmonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unharmonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unharmonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unharmonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unharmonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unharmonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unharmonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unharmonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unharmonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unheroize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unheroize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unheroise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unheroizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unheroises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhonorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhonorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhonorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhonorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhonorably (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhonorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhonorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhonored (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhonored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhonoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhonoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhonoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhouseled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhouseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhouselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhumanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhumanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhumanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhumanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhumanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhumored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhumoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhumoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhumorous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhumorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhumorously (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhumorously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhumourously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhydrolyzed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhydrolyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhydrolysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhydrolyzeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhydrolyseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhydrolyzed\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unhydrolysed\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhypnotizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhypnotizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unhypnotize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unhypnotize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unhypnotizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unhypnotises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unicolor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unicolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unicolorate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unicolorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unicolourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unicolored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unicolorous (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unicolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unicolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unidealized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unidealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidealizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidealisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidealizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidealiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unidolized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unidolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidolizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidolisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidolizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidoliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidolizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidoliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unidolized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unidolised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uniformization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uniformization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uniformizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uniformization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uniformize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uniformize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uniformized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uniformizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uniformizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uniformises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unilateralization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unilateralization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unilateralisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unilateralizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unilateralisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unilateralization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unilateralisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unilateralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unilateralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unilateralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unilateralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unilateralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unimmortalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unimmortalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unimmortalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unimmortalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unimmortalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unimmortalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unimmortalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unimmortalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unimmunized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unimmunized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unimmunised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unindividualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unindividualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindividualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unindividualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindividualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unindividualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unindividualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindividualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unindustrialized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unindustrialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindustrialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unindustrializeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindustrialiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unindustrialized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unindustrialised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uninitializable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uninitializable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uninitialisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uninitialized (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uninitialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uninitialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unionization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unionization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unionize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unionizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unionizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unioniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unionizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unionisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unitalicized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unitalicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitalicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Unitarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Unitarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Unitarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Unitarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Unitarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Unitarianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Unitarianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unitemized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unitemized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitemised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unitization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unitize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("universalization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "universalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("universalize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "universalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("universalizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "universalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "universalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "universaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unjeopardized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unjeopardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unjeopardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unjournalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unjournalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unjournalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unkennel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unkenneled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unkennelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unkenneling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unkennelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlabeled (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlabeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabeledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabelledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabeleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabelleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlabialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlabialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlaborable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlaborable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaborables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaborable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlabored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlabored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlaboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaboredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaboreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlaboureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlabored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlaboured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlaboring (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlaboring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaboringer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabouringer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaboringest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabouringest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaborings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlaboring\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlabouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlearned (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlearned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Eq), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "unlearnt", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlegalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlegalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlegalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlegalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlegalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlegalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlegaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlevel (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unleveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlevelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unleveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unlevelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unliberalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unliberalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unliberalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unliberalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unliberalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unliberalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unliberaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlionized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unliteralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unliteralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unliteralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlocalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlocalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unlocalize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unlocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unlocalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unlocalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmacadamized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmacadamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmacadamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmagnetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmagnetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmagnetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmagnetizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmagnetisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmagnetizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmagnetiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmagnetizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmagnetiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmagnetized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmagnetised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmaterialized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmaterialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmaterialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmechanize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmechanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmechanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmechanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmechanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmechanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmechanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmechanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmechanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmediatized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmediatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmediatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmediatizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmediatiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmediatized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmediatised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmedieval (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmedieval", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmediaeval", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmelodized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmelodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmelodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmemorialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmemorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmemorializedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorialisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmemorializeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorialiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmemorializeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorialiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmemorialized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorialised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmemorized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmemorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmemorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmercerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmercerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmercerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmercerizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmerceriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmercerized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmercerised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmesmerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmesmerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmesmerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmesmerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmesmerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmesmerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmesmerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmesmerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmesmerizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmesmerisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmesmerizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmesmeriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmetalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmetalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetallised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetallized", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmetalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetalliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetallizeds", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmetalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetallised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmetallized\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmethodized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmethodized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmethodizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmethodizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmethodizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmethodising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmilitarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmilitarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmilitarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmineralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmineralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmineralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmineralizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmineralisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmineralizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmineraliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmineralizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmineraliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmineralized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmineralised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unminimized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unminimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unminimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unminimizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unminimisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unminimizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unminimiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unminimizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unminimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unminimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmissionized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmissionized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmissionised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmissionizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmissioniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmissionized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmissionised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmiter (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmiter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmitre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmiters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unmitres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmobilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmobilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmobilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmobilizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmobilisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmobilizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmobiliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmobilizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmobiliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmobilized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmobilised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmodernize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmodernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmodernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmodernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmodernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmodernized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmodernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmodernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmodernizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmodernisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmodernizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoderniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmonopolize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmonopolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopoliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmonopolizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmonopolisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmoralize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmoralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmoralizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmoralisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmotorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmotorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmotorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmotorizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmotorisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmotorizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmotoriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmunicipalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmunicipalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmunicipalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmunicipalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmunicipalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmunicipalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmunicipaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmunicipalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmunicipaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmunicipalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmunicipalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmutualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmutualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmutualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmutualizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmutualisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmutualizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmutualiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmutualizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmutualiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmutualized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmutualised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unmysticize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unmysticize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmysticise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmysticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmysticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmysticizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmysticising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unmysticizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unmysticises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnationalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnationalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnationalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnationalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnationaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnaturalizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnaturalizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnaturalizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnaturalizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnaturalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnaturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnaturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnaturalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnaturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnaturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneighbored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneighbored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighboured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneighborlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneighborlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourlike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourlikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourlike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneighborliness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneighborliness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourliness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborlinesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourlinesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborliness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourliness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneighborly (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneighborly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborlier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourlier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unneighborliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unneighbourliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneutralize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneutralize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unneutralise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneutralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneutralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unneutralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unneutralizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unneutralizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unneutralising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnitrogenized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnitrogenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnitrogenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnitrogenizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnitrogenisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnitrogenizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnitrogeniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnitrogenizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnitrogeniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnitrogenized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnitrogenised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnoncolorables (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnoncolorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unnoncolourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnoncolorably (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnoncolorably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unnoncolourably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnoncolorablies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unnoncolourablies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unnormalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unnormalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unnormalizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unnormalisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unoptimize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unoptimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoptimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoptimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoptimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoptimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoptimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoptimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoptimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unorganizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unorganizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unorganizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unorganizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unorganizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unorganizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unorganize (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unorganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unorganized (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unorganizedly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unorganizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unorganizedness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unorganizedness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unorganisedness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unoxidizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unoxidizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unoxidized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unoxidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxidizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxidiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unoxygenized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unoxygenized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxygenised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxygenizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxygeniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unoxygenized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unoxygenised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpaganize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpaganize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpaganise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpaganizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpaganises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpalisaded (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpalisaded", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unpalisadoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpanegyrized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpanegyrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpanegyrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparagonized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparagonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparagonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparagonizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparagoniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparagonized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparagonised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparalleled (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparalleled", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "unparallelled", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparalyzed (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparalyzed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparalysed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparalyzedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparalysedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparalyzeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparalyseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparalyzeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparalyseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparalyzed\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparalysed\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparameterized (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparameterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparameterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparametrized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparametrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparametrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparceled (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparceled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparcelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparceledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparcelledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparceleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unparcelleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparenthesized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparenthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparenthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparticularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparticularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticulariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticulariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unparticularizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unparticularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unparticularizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unparticularising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpartizan (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpartizan", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpartisan", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpasteurized (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpasteurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpasteurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpatronizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpatronizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpatronizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpatronizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpatronizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpatronizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpatronized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpatronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpatronizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpatronizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpatronizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpatronising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpauperized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpauperized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpauperised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpauperizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpauperiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpauperized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpauperised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpenalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpenalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpenalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpenalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpenalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpenalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpenaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unperceptively (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unperceptively", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unpreceptively", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpersonalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpersonalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpersonalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpersonalizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpersonalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpersonalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unphilosophize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unphilosophize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphilosophise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unphilosophizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphilosophises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unphilosophized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unphilosophized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphilosophised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unphosphatized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unphosphatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphosphatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unphosphatizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphosphatisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unphosphatizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphosphatiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unphosphatizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphosphatiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unphosphatized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unphosphatised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpictorialize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpictorialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpictorialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpictorialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpictorialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpictorialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpictorializing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpictorializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpictorialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unplagiarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unplagiarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unplagiarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unplagiarizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unplagiarisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unplagiarizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unplagiariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unplagiarizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unplagiariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unplagiarized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unplagiarised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpluralized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpluralized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpluralised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpoeticized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpoeticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoeticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpoeticizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoeticisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpoeticizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoeticiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpoeticizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoeticiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpoeticized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoeticised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpoetize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpoetize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoetise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpoetizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoetises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpoetized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpoetized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpoetised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpolarizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpolarizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpolarized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpolarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolarized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolarised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpolymerized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpolymerized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolymerised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolymerizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolymerisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolymerizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolymeriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolymerizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolymeriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpolymerized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpolymerised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpopularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpopularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpopularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpopularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpopularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpopularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpopularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpopularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpracticed (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpracticed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unpractised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpracticedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unpractisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpracticeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unpractiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpressurized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpressurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpressurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unprotestantize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unprotestantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unprotestantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unprotestantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unprotestantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unprotestantizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unprotestantising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unprotestantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unprotestantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpublicized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpublicized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpublicised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpulverize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpulverize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpulverise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpulverizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpulverises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unpulverized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unpulverized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpulverised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpulverizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpulverisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unpulverizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unpulveriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unquantized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unquantized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unquantised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unradicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unradicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unradicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unradicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unradicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrancored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrancored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrancoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrancoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrancoreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancoureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrancored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancoured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrancorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrancorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrancourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrationalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrationalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrationalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrationalizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrationalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrationalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unravel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unraveled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unravelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unraveling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unravelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unraveler (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unraveler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unraveller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unravelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unravellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unraveler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unraveller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrealizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrealizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrealize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrealize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrealizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrealisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrecognizable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrecognizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrecognizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrecognizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrecognizably (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrecognizably", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognisably", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrecognized (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrecognized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrecognizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrecognizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrecognizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrecognizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrecognisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unreconnoitered (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unreconnoitered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unreconnoitred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreconnoiteredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unreconnoitredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreconnoitereddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unreconnoitreddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreconnoitereds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unreconnoitreds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreconnoitered\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unreconnoitred\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unregularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unregularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unregularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unreorganized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unreorganized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unreorganised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreorganizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unreorganisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unreorganizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unreorganiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrevelationize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrevelationize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrevelationise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrevelationizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unrevelationises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrivaled (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrivaled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrivalled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrivaledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrivalledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrivaleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrivalleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unromanized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unromanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unromanticized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unromanticized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanticised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unromanticizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanticisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unromanticizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanticiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unromanticizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanticiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unromanticized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unromanticised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unroyalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unroyalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unroyalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unroyalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unroyaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unroyalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unroyalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unrumored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unrumored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrumoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrumoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrumouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unrumoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unrumoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsabered (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsabered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsabred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsaberedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsabredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsabereddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsabreddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsatirizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsatirizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatirisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsatirize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsatirize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatirise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsatirizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatirises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsatirized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsatirized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatirised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsatirizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatirisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsatirizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsatiriseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavored (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavoredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavoreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavoureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavoredly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavoredly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouredly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavoredness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavoredness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouredness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavorily (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavorily", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavourily", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavorilier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavourilier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavorilies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavourilies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavoriliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouriliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavoriness (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavoriness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouriness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavorinesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavourinesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavoriness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsavouriness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsavory (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsavory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unsavoury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavorier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unsavourier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavories", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unsavouries", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavoriest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unsavouriest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsavory\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unsavoury\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscandalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscandalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscandalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscandalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscandalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscandalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscandalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscandalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscandalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscandalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscandalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscandaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscepter (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscepter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscepters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscepter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptre\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsceptered (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsceptered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscepteredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsceptereddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsceptreddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unschematized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unschematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unschematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unschematizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unschematisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unschematizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unschematiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unschematizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unschematiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unschematized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unschematised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unscoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscoring (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscoring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unscouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscrutinized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscrutinized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutiniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscrutinizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscrutinizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unscrutinizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unscrutinizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unscrutinizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unscrutinisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsectarianize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsectarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsectarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsectarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsectarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsectionalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsectionalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsectionalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsecularize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsecularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsecularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsecularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsecularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsecularized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsecularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsecularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsecularizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsecularisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsecularizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unseculariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsensitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsensitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsensualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsensualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsensualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsensualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsentimentalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsentimentalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsentimentalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsentimentalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsentimentalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsentimentalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsentimentalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsentimentalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsepulcher (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsepulcher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsepulchre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsepulchers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsepulchres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsepulchered (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsepulchered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsepulchred", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unserialized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unserialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unserialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unshakable (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unshakable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "unshakeable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unshed (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unshed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unshoed", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsignalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsignalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsignalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsignalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsignalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsignalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsignaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsignalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsignaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsignalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsignalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsiphon (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsiphon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsyphon", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsiphons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsyphons", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsiphon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsyphon\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsocialized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsocialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsocialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsocializedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsocialisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsocializeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsocialiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsocializing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsocializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsocialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsolemnize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsolemnize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsolemnise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsolemnizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsolemnises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsolemnized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsolemnized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsolemnised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsolemnizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsolemnisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsolemnizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsolemniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsomber (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsomber", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsombre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsomberly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsomberly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsombrely", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsomberness (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsomberness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsombreness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsomberness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsombreness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unspecialized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unspecialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecializedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecializeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unspecializing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unspecializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecializinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecializingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspecialisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unspecterlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unspecterlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unspectrelike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecterlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unspectrelikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspecterlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unspectrelike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unspiritualize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unspiritualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspiritualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspiritualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspiritualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspiritualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspiritualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unspiritualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unspiritualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsplendorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsplendorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsplendourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsplendorously (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsplendorously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsplendourously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unspoiled (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unspoiled", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "unspoilt", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstabilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstabilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstabilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstabilizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstabilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstabilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstandardizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstandardizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstandardisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstandardized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstandardized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstandardised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstandardizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstandardisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstandardizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstandardiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsterilized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsterilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsterilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstigmatized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstigmatized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstigmatised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstigmatizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstigmatisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstigmatizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstigmatiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstigmatizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstigmatiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstigmatized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstigmatised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unstoicize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unstoicize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstoicise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unstoicizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unstoicises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsubsidized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsubsidized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsubsidised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsubstantialize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsubstantialize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsubstantialise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsubstantialized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsubstantialised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsubstantializing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsubstantialising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsubstantializes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsubstantialises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsuccorable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsuccorable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsuccourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsuccorables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsuccourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsuccorable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsuccourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsuccored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsuccored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "unsuccoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsulphurized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsulphurized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsulphurised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsulphurizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsulphuriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsulphurized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsulphurised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsummarizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsummarizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsummarisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsummarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsummarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsummarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsummarizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsummarisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsummarizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsummariseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsupernaturalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsupernaturalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsupernaturalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsupernaturalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsupernaturalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsupernaturalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsupernaturalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsupernaturalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsymbolized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsymbolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymbolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsymbolizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymbolisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsymbolizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymboliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsymmetrized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsymmetrized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymmetrised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsymmetrizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymmetriseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsymmetrized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsymmetrised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsympathizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsympathizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsympathizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsympathizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsympathized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsympathized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsympathizing (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsympathizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsympathizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsympathizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizinglier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisinglier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsympathizingliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsympathisingliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsynchronized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsynchronized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynchronised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsynchronizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynchronisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsynchronizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynchroniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsynthesized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsynthesized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynthesised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsynthesizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynthesisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsynthesizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsynthesiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsystematized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsystematized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystematizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystematizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsystematizedly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsystematizedly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematisedly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsystematizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsystematizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystematizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystematizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystematisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unsystemizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unsystemizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystemisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystemizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystemisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unsystemizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unsystemisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untantalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untantalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untantalizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untantalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizinger", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalisinger", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizingest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalisingest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untantalizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untantalising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untartarized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untartarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untartarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untartarizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untartariseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untartarized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untartarised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untechnicalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untechnicalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untechnicalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untechnicalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untechnicalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untemporizing (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untemporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untemporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untemporizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untemporisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untemporizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untemporising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unterrorized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unterrorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unterrorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untheorizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untheorizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untheorisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untheorizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untheorisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untheorizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untheorisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untrammeled (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untrammeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "untrammelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untrammeledder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "untrammelledder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "untrammeleddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "untrammelleddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untranquilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untranquilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untranquilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untranquillize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untranquillize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untranquillise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untranquillized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untranquillized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untranquillised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("untyrannized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "untyrannized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "untyrannised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unutilizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unutilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unutilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unutilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unutilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unutilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unutilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unutilized (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unutilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unutilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvaporized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvaporized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvaporised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvaporizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvaporiseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvaporized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvaporised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note for \"vaporize\"", + ], + }, +Cluster { + header: Some("unvectorizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvectorizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvectorisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unverbalized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unverbalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unverbalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvictimized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvictimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvictimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvisualized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvisualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvisualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvisualizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvisualisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvisualizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvisualiseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvitalized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvitalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvitalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvitriolized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvitriolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitriolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvitriolizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitrioliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvitriolized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvitriolised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvocalized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvocalizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvocalisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvocalizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvocaliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvocalizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvocaliseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvocalized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvocalised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvolatilize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvolatilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvolatilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvolatilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvolatilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvolatilized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvolatilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvolatilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvolatilizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvolatilisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvolatilizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvolatiliseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvulcanized (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvulcanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulcanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulcanizedder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulcanisedder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulcanizeddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulcaniseddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulcanizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulcaniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulcanized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulcanised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unvulgarize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unvulgarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulgarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulgarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulgarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulgarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulgarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unvulgarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unvulgarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unwesternized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unwesternized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwesternised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unwesternizeds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwesterniseds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unwesternized\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwesternised\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unwomanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unwomanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwomanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "unwomanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwomanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("unwomanized (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "unwomanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "unwomanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("updraft (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "updraft", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "updraught", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "updrafts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "updraughts", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "updraft\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "updraught\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("upward (level 10)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "upward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "upward", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "upwards", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Adverb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uralitization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uralitization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uralitizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uralitize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uralitize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uralitized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uralitizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uralitizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uralitises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uratemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uratemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urataemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urbanization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urbanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "urbanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "urbanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urbanize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urbanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "urbanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "urbanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "urbanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "urbanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uredema (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uredema", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uroedema", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uremia (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uremias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uraemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "uremia\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uraemia\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uremic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "uraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urethrorrhea (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urethrorrhea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urethrorrhoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uricemia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uricemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uricaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("uricemic (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "uricemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "uricaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urinemia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urinemia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urinaemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urinemic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urinemic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urinaemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urohematin (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urohematin", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urohaematin", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("urophein (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "urophein", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "urophaein", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("usability (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "usability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "useability", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "usability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "useability\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("usable (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "usable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "useable", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilitarianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilitarianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilitarianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilitarianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilitarianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilitarianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilitarianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilitarianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilitarianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilizability (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilizability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilizable (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilization (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utilizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Utopianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Utopianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Utopianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Utopianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Utopianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Utopianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Utopianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("utopianizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "utopianizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "utopianizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "utopianiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaagmer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaagmer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vaagmaer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaccinization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaccinization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaccinisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaccinizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaccinisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaccinization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaccinisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vacuolization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vacuolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vacuolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vacuolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vacuumize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vacuumize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuumise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vacuumized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuumised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vacuumizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuumising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vacuumizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vacuumises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vagabondize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vagabondize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vagabondized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vagabondizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vagabondizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vagabondizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vagabondizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vagabondizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagabondisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaginule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaginule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vaginulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vagrantize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vagrantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagrantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vagrantizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vagrantises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("valor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "valor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "valour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "valours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "valour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("valorization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "valorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("valorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "valorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "valorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "valorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("valorousness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "valorousness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "valourousness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("valvule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "valvule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "valvulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vampirize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vampirize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vampirise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vampirized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vampirised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vampirizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vampirising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vampirizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vampirises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vandalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vandalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vandalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vandalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vandalize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vandalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vandalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vandalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vandalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vandalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vapor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vapor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vapored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapoured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vapor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapourings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapouring\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vapors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vapours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporability (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporability", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourability", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporabilities", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourabilities", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporability\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourability\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporescent (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporescent", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourescent", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporific (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporific", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourific", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporimeter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporimeter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourimeter", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporimeter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourimeter\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporingly (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapouringly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporish (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporish", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourish", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporisher", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourisher", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporishest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourishest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporishness (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporishness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourishness", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporishnesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourishnesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporishness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourishness\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note vaporize", + ], + }, +Cluster { + header: Some("vaporization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note for \"vaporize\"", + ], + }, +Cluster { + header: Some("vaporize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "\"Vapor\" is spelled \"Vapour\" unless the word is \"vaporize\". This", + "seams odd to be, but I could not find any evidence that \"vapourize\"", + "or \"vapourise\" is a legal word, although I could find some evidence", + "it was used. Nevertheless since \"vapourize/-ise\" doesn\'t seam to", + "be a valid word, this spelling was not included.", + ], + }, +Cluster { + header: Some("vaporizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vaporiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "see note for \"vaporize\"", + ], + }, +Cluster { + header: Some("vaporless (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporlesses (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporlesses", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourlesses", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporlike (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporlike", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourlike", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporlikes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourlikes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporlike\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourlike\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporose (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporose", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourose", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporously (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporously", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourously", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vaporware (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vaporware", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "vapourware", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vapory (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vapory", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapoury", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapourier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vaporiest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vapouriest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("varicolored (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "varicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "varicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "varicoloredder", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "varicolouredder", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "varicoloreddest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "varicoloureddest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "varicoloreds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "varicoloureds", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "varicolored\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "varicoloured\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("varicolorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "varicolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "varicolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vascularization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vascularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vascularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vascularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vascularize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vascularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vascularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vascularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vascularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vascularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vasectomize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vasectomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vasectomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vasectomized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vasectomised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vasectomizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vasectomising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vassalization (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vassalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vassalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vassalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vassalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vassalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vassalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vassalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vassalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vassalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vassalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vassalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Vaticanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Vaticanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vaticanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vaticanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Vaticanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Vaticanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vaticanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vaticanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vaticanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vavasor (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vavasor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vavasour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vavasors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vavasours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Ve (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Ve", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Voe", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Ve\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Voe\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vectorizable (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vectorizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vectorization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vectorization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vectorize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vectorize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vectorizer (level 99)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vectorizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectoriser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizered", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisered", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizering", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisering", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vectorizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vectorisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("veery (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "veery", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "verey", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vegetablize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vegetablize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vegetablise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vegetablizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vegetablises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("velarization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "velarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("velarize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "velarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "velarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("veld (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "veld", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "veldt", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "velds", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "veldts", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "veld\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "veldt\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vendor (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vendor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vender", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vendors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "venders", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vendor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vender\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venomization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venomization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venomisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venomizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venomisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venomization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venomisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venomize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venomize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venomise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venomizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "venomises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ventre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "venters", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "ventres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("ventriloquize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "ventriloquize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ventriloquise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ventriloquized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ventriloquised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ventriloquizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ventriloquising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "ventriloquizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "ventriloquises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("venule (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "venule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "venulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("veranda (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "veranda", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verandah", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verandas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verandahs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "veranda\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verandah\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("verbalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "verbalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("verbalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "verbalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("verbalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "verbalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "verbalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "verbaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vermeil (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vermeiled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vermeilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vermeiling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vermeilling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vermeiles (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vermeiles", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vermeilles", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vermilion (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vermilion", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "vermillion", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vermilion\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "vermillion\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vermilionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vermilionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vermilionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vermilionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vermilionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vernacularization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vernacularization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernacularizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernacularization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vernacularize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vernacularize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernacularized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernacularizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernacularizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernacularises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vernalization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vernalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vernalize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vernalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vernalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vernalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("versicolor (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "versicolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "versicolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("versicolorate (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "versicolorate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "versicolourate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("versicolored (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "versicolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "versicoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("versicolorous (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "versicolorous", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "versicolourous", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("versionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "versionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "versionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "versionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "versionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vesicule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vesicule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vesiculae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vestryize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vestryize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vestryise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vestryizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vestryises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("veter (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "veter", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vetoer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "veter\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vetoer\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("veteranize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "veteranize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "veteranise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "veteranizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "veteranises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vial (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vialed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vialled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vialing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vialling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victimizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victimizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victimization (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victimization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victimize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victimize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victimizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victimizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victimizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "victimiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Victorianize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Victorianize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Victorianise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Victorianizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Victorianises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Victorianize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Victorianise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victual (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victualed", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victualled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victualing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victualling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victualage (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victualage", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victuallage", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victualages", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victuallages", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victualage\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victuallage\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victualer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victualer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victualler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victualers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victuallers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "victualer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victualler\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("victualess (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "victualess", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "victualless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("videodisk (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "videodisc", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "videodisk", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "videodisc\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "videodisk\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "videodiscs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "videodisks", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vier (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "viers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vires", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Vietnamization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Vietnamization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vietnamization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Vietnamize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Vietnamize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vietnamized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vietnamizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Vietnamizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Vietnamises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vigor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vigor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vigour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vigors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vigours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vigor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "vigour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vigorless (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vigorless", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vigourless", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("villagization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "villagization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "villagisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "villagizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "villagisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("viremia (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "viremia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "viraemia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "viremias", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "viraemias", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("viremic (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "viremic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "viraemic", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("virilization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "virilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "virilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("virilize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "virilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "virilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("virtualize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "virtualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virtualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "virtualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "virtualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("virtuosi (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "virtuosi", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "virtuosos", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "virtuosoes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visionize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visionize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visionise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visionizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visionises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vizor", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vizors", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vizor\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visualizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visualizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visualization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visualize (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visualize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("visualizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "visualizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualiser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "visualizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visualiser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitalization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisings", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizing\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalising\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitalizingly (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitalizingly", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitalisingly", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitaminization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitaminization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaminisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitaminize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitaminize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaminise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitaminized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaminised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitaminizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaminising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitaminizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitaminises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitriolizable (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitriolizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitriolization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitriolization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitriolize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitriolize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vitriolizer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vitriolizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitrioliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vitriolizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vitriolisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vivandier (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vivandier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vivandire", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("viver (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "viver", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vivre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vivers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "vivres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("viverrine (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "viverrine", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "viverrinae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vizard (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vizard", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visard", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vizards", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visards", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vizied (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vizied", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visied", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vizies (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vizies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "visies", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vocalization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vocalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vocalize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vocalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vocalizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vocalizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocaliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocalisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocalizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocaliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vocationalization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vocationalization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocationalisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocationalizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocationalisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocationalization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocationalisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vocationalize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vocationalize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocationalise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vocationalizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vocationalises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volatilizable (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volatilizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volatilization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volatilization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volatilize (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volatilize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volatilizer (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volatilizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatiliser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatilisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volatilizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volatiliser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volcanization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volcanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volcanize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volcanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "volcanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("voltize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "voltize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "voltise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "voltizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "voltises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vowelization (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vowelization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vowelizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vowelization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vowelize (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vowelize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vowelized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vowelizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vowelizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vowelises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulcanizable (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulcanizable", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisable", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizabler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisabler", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizables", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisables", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizablest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisablest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizable\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisable\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulcanizate (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulcanizate", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisate", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizates", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisates", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizate\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisate\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulcanization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulcanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulcanize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulcanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulcanizer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulcanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulcanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulgarization (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulgarization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulgarize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulgarize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("vulgarizer (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "vulgarizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgariser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgarisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "vulgarizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulgariser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wackes (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wackes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wackoes", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wacky (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wacky", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whacky", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wackier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whackier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wackiest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whackiest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Wagnerize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Wagnerize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Wagnerise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Wagnerizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Wagnerises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Wagnerize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Wagnerise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wagon (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wagon", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggon", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagoned", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoned", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagoning", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoning", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagons", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggons", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagon\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggon\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wagoneer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wagoneer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoneer", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wagoner (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wagoner", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoner", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagoners", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoners", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagoner\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggoner\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wagonette (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wagonette", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggonette", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagonettes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggonettes", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wagonette\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "waggonette\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wainscot (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wainscoted", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wainscotted", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wainscoting", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wainscotting", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wainscotings", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wainscottings", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wainscoting\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wainscotting\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wallah (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wallah", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "walla", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wallahs", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wallas", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wantonize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wantonize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "wantonise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wantonized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "wantonised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wantonizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "wantonising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wantonizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "wantonises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("warer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "warer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "warre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Warford (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Warford", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Warfourd", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Warford\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "Warfourd\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("warm-up (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "warm-up", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "warmup", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "warm-ups", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "warmups", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "warm-up\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "warmup\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("warrantize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "warrantize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "warrantise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("waterbed (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "waterbed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "water bed", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "waterbeds", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "water beds", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "waterbed\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "water bed\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("watercolor (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "watercolor", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "watercolour", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercolored", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "watercoloured", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercoloring", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "watercolouring", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercolors", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "watercolours", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercolor\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "watercolour\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("watercolorist (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "watercolorist", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "watercolourist", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercolorists", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "watercolourists", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "watercolorist\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "watercolourist\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weasel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weaseled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weaselled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weaseling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weaselling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weatherize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weatherize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weatherise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weatherized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weatherised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weatherizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weatherising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weatherizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weatherises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weepy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weepy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weepie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weeviled (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weeviled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "weevilled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weftwize (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weftwize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weftwise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("weize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "weize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "weizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "weises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("welsh (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "welsh", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "welch", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "welshed", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "welched", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "welshing", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "welching", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "welshes", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "welches", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wer (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "waer", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("werewolf (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "werewolf", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "werwolf", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "werewolves", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "werwolves", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "werewolf\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "werwolf\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("westernization (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "westernization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "westernizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "westernization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("westernize (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "westernize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "westernized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "westernizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "westernizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "westernises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("whimsy (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "whimsy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whimsey", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whimsys", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whimseys", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whimsy\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whimsey\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("whir (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "whir", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whirr", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whirs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whirrs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whir\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whirr\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("whiskey (level 20)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "whiskeys", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whiskies", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("drink"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiskey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whisky", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("drink"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiskey\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "whisky\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("drink"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiskey", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("code word"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiskies", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("code word"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiskey\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: true, note: false, + description: Some("code word"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Whitmanize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Whitmanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Whitmanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Whitmanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Whitmanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "Whitmanize\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "Whitmanise\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("whiz (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "whiz", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "whizz", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whizzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiz\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "whizz\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiz", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "whizz", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wiz", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whiz\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "whizz\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wiz\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whizzes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(1),}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "wizzes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: Some(2),}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wiz", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("wizard"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wizz", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some("as in \"gee whiz\", Ox: informal, chiefly N. Amer."), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("whodunit (level 40)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "whodunit", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whodunnit", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whodunits", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whodunnits", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "whodunit\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "whodunnits\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wigeon (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wigeon", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "widgeon", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wigeon\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "widgeon\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wigeon", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "widgeons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "wigeons", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "widgeon", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(""), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("willful (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "willful", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "wilful", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "willfuler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "wilfuler", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "willfulest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "wilfulest", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("willfully (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "willfully", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wilfully", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "willfullier", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wilfullier", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "willfulliest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wilfulliest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("willfulness (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "willfulness", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wilfulness", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "willfulness\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wilfulness\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("willy (level 55)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "willy", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "willie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("winterization (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "winterization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "winterizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "winterization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("winterize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "winterize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "winterized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "winterizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "winterizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "winterises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wintry (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wintry", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wintery", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wintrier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "winterier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wintriest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "winteriest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wisteria (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wisteria", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wistaria", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wisterias", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wistarias", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wisteria\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wistaria\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wizen (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wizen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "wisen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wolf (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wolves", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "wolfs", + types: &[ + Type {category: Category::American, tag: Some(Tag::Possible), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wolfs", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: Some(Pos::Verb), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("womanization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "womanization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("womanize (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "womanize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("womanizer (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "womanizer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womaniser", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanizers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womanisers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "womanizer\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "womaniser\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woning (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woning", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wonning", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "wonings", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wonnings", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woning\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wonning\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woodcockize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woodcockize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "woodcockise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woodcockizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "woodcockises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woolen (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woolen", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "woollen", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolenner", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "woollenner", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolennest", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "woollennest", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolens", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "woollens", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolen\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "woollen\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woolenization (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woolenization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenization", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolenizations", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenisations", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenizations", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolenization\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenisation\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenization\'s", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woolenize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woolenize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenize", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolenizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "woollenizes", + types: &[ + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("woolly (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "woolly", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wooly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woollier", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "woolier", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolliest", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wooliest", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Adjective), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolly", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "wooly", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "woolie", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woollies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "woolies", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "woolly\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "woolie\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "wooly\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: Some(Pos::Noun), archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("wornil (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "wornil", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "wournil", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("worship (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "worshiped", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "worshipped", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "worshiping", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "worshipping", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("worshiper (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "worshiper", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "worshipper", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "worshipers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "worshippers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "worshiper\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "worshipper\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yak (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yak", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yaks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yak", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(" :1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yak\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":1"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yak", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yakked", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yacked", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yakking", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yacking", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yaks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":2"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yak", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yack", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yaks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yacks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yak\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yack\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":3"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuck", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yuk", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":4"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuk", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yuck", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yak", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "yock", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":5"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yucks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yocks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "yaks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":5"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuk\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yuck\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yock\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + Variant { + word: "yak\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":5"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuk", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yuck", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":6"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yukked", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yucked", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":6"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yukking", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yucking", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":6"), + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yuks", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yucks", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: Some(":6"), + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yeshiva (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yeshiva", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yeshivah", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yeshivas", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yeshivot", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yeshivahs", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yeshiva\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yeshivah\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yodel (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yodeled", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yodelled", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yodeling", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yodelling", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yodeler (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yodeler", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yodeller", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yodelers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yodellers", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yodeler\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yodeller\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yogi (level 50)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yogi", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yogin", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yogis", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yogins", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yogi\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "yogin\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("yogurt (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "yogurt", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "yoghurt", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yoghourt", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yogourt", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yogurt\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "yoghurt\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yoghourt\'s", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yogourt\'s", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "yogurts", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + ], + }, + Variant { + word: "yoghurts", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yoghourts", + types: &[ + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Seldom), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + ], + }, + Variant { + word: "yogourts", + types: &[ + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zaffer (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zaffer", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zaffre", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zaffers", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zaffres", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zea (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zeas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoaea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoeas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoea\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoaea\'s", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zeroize (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zeroize", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "zeroise", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zeroized", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "zeroised", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zeroizing", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "zeroising", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zeroizes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + ], + }, + Variant { + word: "zeroises", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zoeae (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zoeae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooeae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zoeal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zoeal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zoecium (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zoecium", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooecium", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoecia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zooecia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zombie (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zombie", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "zombi", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zombies", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "zombis", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zombie\'s", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "zombi\'s", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Seldom), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zonesthesia (level 95)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zonesthesia", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zonaesthesia", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zonule (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zonule", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zonulae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zooglea (level 70)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zooglea", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoogloea", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "zoogleas", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoogloeas", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zoogleae (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zoogleae", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoogloeae", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zoogleal (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zoogleal", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zoogloeal", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("zygenid (level 80)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "zygenid", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "zygaenid", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("Koran (level 35)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Koran", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Quran", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "Qur\'an", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "Quran is more correct bases on a modern transliterated from Arabic", + "to English, but both M-W and Oxford has Koran marked as the primary", + "form. Technically \"Qur\'an\" more correct but that doesn\'t seam to be", + "used as much.", + ], + }, +Cluster { + header: Some("Koranic (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "Koranic", + types: &[ + Type {category: Category::Other, tag: None, num: None,}, + ], + }, + Variant { + word: "Quranic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Eq), num: None,}, + ], + }, + Variant { + word: "Qur\'anic", + types: &[ + Type {category: Category::Other, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + "See note for Quran", + ], + }, +Cluster { + header: Some("virtualization (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "virtualization", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + ], + }, + Variant { + word: "virtualisation", + types: &[ + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("volcanism (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "volcanism", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanism", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanisms", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanisms", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "volcanism\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "vulcanism\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("eukaryote (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "eukaryote", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "eucaryote", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eukaryotes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "eucaryotes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eukaryote\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "eucaryote\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "eukaryotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "eucaryotic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +Cluster { + header: Some("prokaryote (level 60)"), + entries: &[ + Entry { + variants: &[ + Variant { + word: "prokaryote", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "procaryote", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prokaryotes", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "procaryotes", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prokaryote\'s", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "procaryote\'s", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + Entry { + variants: &[ + Variant { + word: "prokaryotic", + types: &[ + Type {category: Category::American, tag: None, num: None,}, + Type {category: Category::BritishIse, tag: None, num: None,}, + Type {category: Category::BritishIze, tag: None, num: None,}, + Type {category: Category::Canadian, tag: None, num: None,}, + Type {category: Category::Australian, tag: None, num: None,}, + ], + }, + Variant { + word: "procaryotic", + types: &[ + Type {category: Category::American, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIse, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::BritishIze, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Canadian, tag: Some(Tag::Variant), num: None,}, + Type {category: Category::Australian, tag: Some(Tag::Variant), num: None,}, + ], + }, + ], + pos: None, archaic: false, note: false, + description: None, + comment: None, + }, + ], + notes: &[ + ], + }, +]; diff --git a/crates/varcon/src/lib.rs b/crates/varcon/src/lib.rs new file mode 100644 index 0000000..fdff445 --- /dev/null +++ b/crates/varcon/src/lib.rs @@ -0,0 +1,75 @@ +mod codegen; + +pub use codegen::*; + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Cluster { + pub header: Option<&'static str>, + pub entries: &'static [Entry], + pub notes: &'static [&'static str], +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Entry { + pub variants: &'static [Variant], + pub pos: Option, + pub archaic: bool, + pub note: bool, + pub description: Option<&'static str>, + pub comment: Option<&'static str>, +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Variant { + pub types: &'static [Type], + pub word: &'static str, +} + +#[derive(Clone, PartialEq, Eq, Debug)] +pub struct Type { + pub category: Category, + pub tag: Option, + pub num: Option, +} + +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] +#[cfg_attr(feature = "flags", derive(enumflags2::BitFlags))] +#[repr(u8)] +pub enum Category { + American = 0x01, + BritishIse = 0x02, + BritishIze = 0x04, + Canadian = 0x08, + Australian = 0x10, + Other = 0x20, +} + +#[cfg(feature = "flags")] +pub type CategorySet = enumflags2::BitFlags; + +#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +#[cfg_attr(feature = "flags", derive(enumflags2::BitFlags))] +#[repr(u8)] +pub enum Tag { + Eq = 0x01, + Variant = 0x02, + Seldom = 0x04, + Possible = 0x08, + Improper = 0x10, +} + +#[cfg(feature = "flags")] +pub type TagSet = enumflags2::BitFlags; + +#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] +#[cfg_attr(feature = "flags", derive(enumflags2::BitFlags))] +#[repr(u8)] +pub enum Pos { + Noun = 0x01, + Verb = 0x02, + Adjective = 0x04, + Adverb = 0x08, +} + +#[cfg(feature = "flags")] +pub type PosSet = enumflags2::BitFlags;